What is the purpose of the method plot()?

A Displays symbols
B Displays charts
C Displays symbols and charts
D Display characters

Correct Answer: Displays charts

The most used plotting function in R programming is the plot() function. It is a generic function, meaning, it has many methods which are called according to the type of object passed to plot(). The plot() function will display a different type of chart depending on the arguments that you pass into it.

Related Questions

Next steps