What is the purpose of the method plot()?

What is the purpose of the method plot()? 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