

MCQOPTIONS
Saved Bookmarks
1. |
If_I_want_to_save_a_plot_to_a_PDF_file,_which_of_the_following_is_a_correct_way_of_doing_that?$ |
A. | Construct the plot on the screen device and then copy it to a PDF file with dev.copy2pdf() |
B. | Construct the plot on the PNG device with png(), then copy it to a PDF with dev.copy2pdf() |
C. | Open the PostScript device with postscript(), construct the plot, then close the device with dev.off() |
D. | Open the screen device with quartz(), construct the plot, and then close the device with dev.off() |
Answer» B. Construct the plot on the PNG device with png(), then copy it to a PDF with dev.copy2pdf() | |