Posts

Showing posts from November, 2025

Assignment #12: Introduction to R Markdown

Image
  What I learned about Markdown syntax is that it is well organized, and it adds to your code, making it easier to read and cleaner to look at. I learned that LaTeX lets you write out math symbols and equations, making it look neat. The code chunks let me run R inside the same documents, and I did not have a problem. When it came to knitting, I was confused about what it was at first and how to do it but then I found out it just creates the final document..

Assignment #11: Debugging and Defensive Programming in R

Image
 This is the original error code: In the original error there is an extra "&", so there only needs to be one. Having && tests the first true/false value while having & test each element one by one. But there is still an error in which we have not created the tukey.outlier.  To fix this error tukey.oulier needs to be created because the original code calls it, but it is not shown.