Chapter 18 Multiple choice questions

Quiz Content

not completed
. Execute the following lines of code:
plot(1:10,rnorm(10),type='p',pch=15,cex=0.5)
points(1:10,rnorm(10),pch=16,cex=0.5)
What is the biggest problem with the graph that is produced?

not completed
. How might the graph produced by the following lines of code be usefully improved?

plot(rnorm(100),rnorm(100),type='p',pch=15,cex=0.5,xlim=c(-20,20),ylim=c(-20,20))

not completed
. Download the data file for the multiple-choice questions for Chapter 18.
Inspect the data in q3data. How would this best be plotted?

not completed
. Which function would you be most likely to use in creating a raincloud plot from scratch?

not completed
. What is the hexadecimal code for blue with 50% transparency?

not completed
. Which of the following palettes would you use to plot a heatmap of data that are scaled between 0 and 100, such that larger values indicate a greater magnitude? (Hint, you might find the pal.test() function from the pals package helpful).

not completed
. Which of the following palettes would you use to plot a heatmap of phase data that have angular values between 0 and 360 degrees, such that 0 and 360 are identical?

not completed
. Which of the following palettes would be most appropriate for ensuring accessibility to people who have tritanopia?

not completed
. Which function would you use to create a vector image?

not completed
. How might you represent the standard error for a continuous time-varying curve?

Back to top