Autocomplete for plot parameters?

I am really bad at remembering which parameter does what in plot() function in R. And i found out that the autocomplete doesnt suggest or show any plot parameters. Is there a way to enable the autocomplete for those parameter names or a way to import user defined completions for it?

Ex:

plot(data, col = "blue", cex = .7, pch=0, lty=6) 

None of these paramters (except data) are shown in the autocomplete.

plot() works for a wide range of clases, and even can be extended by other packages so the parameters depend on what method is going to be used for an specific object class, that is why you don't get a suggestion.

But if i want a scatterplot, then there is no way to do it other than plot(). im sad.

I recommend that you learn ggplot2

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.