Take as many assements as you can to improve your validate your skill rating
Total Questions: 20
1. Which of the following functions is typically used to add elements to a plot in the base graphics system?
Correct Answer is : boxplot()
2. Which function opens the screen graphics device for the Mac ?
Correct Answer is : quartz()
3. What does the ‘pch’ option to par() control?
Correct Answer is : the plotting symbol/character in the base graphics system
4. If I want to save a plot to a PDF file, which of the following is a correct way of doing that?
Correct Answer is : Construct the plot on the screen device and then copy it to a PDF file with dev.copy2pdf()
5. __________ produces box-and-whisker plots.
Correct Answer is : bwplot
6. __________ produces bivariate scatterplots or time-series plots.
Correct Answer is : xyplot
7. Annotation of plots in any plotting system involves adding points, lines, or text to the plot, in addition to customizing axis labels or adding titles. Different plotting systems have different sets of functions for annotating plots in this way. Which of the following functions can be used to annotate the panels in a multi-panel lattice plot?