This is Quiz 1 from the Exploratory Data Analysis course
1. Which of the following is a principle of analytic graphics?
2. What is the role of exploratory graphs in data analysis?
library(jpeg)
download.file("https://d396qusza40orc.cloudfront.net/getdata%2Fjeff.jpg", destfile = "quiz2jpeg.jpg")
jpgdat = readJPEG("quiz2jpeg.jpg", native = TRUE)
quantile(jpgdat, probs = c(0.3, 0.8))
## 30% 80%
## -15259150 -10575416
3. Which of the following is true about the base plotting system?
4. Which of the following is an example of a valid graphics device in R?
5. Which of the following is an example of a vector graphics device in R?
6. Bitmapped file formats can be most useful for
7. Which of the following functions is typically used to add elements to a plot in the base graphics system?
8. Which function opens the screen graphics device for the Mac?
9. What does the ‘pch’ option to par() control?
10. If I want to save a plot to a PDF file, which of the following is a correct way of doing that?
See more at: http://www.ryantillis.com/