基数R中的绘图函数列表?

时间:2017-06-04 02:36:44

标签: r plot

每当我在Base R中遇到一个新的绘图功能时(例如dotchart()smoothScatter()matplot()),我希望在Base R中有一个绘图功能列表可以参考各种情节案例。

问题:

我想知道我们的同事是否可能知道基础R 中的绘图功能列表,我可以参考各种绘图案例?

2 个答案:

答案 0 :(得分:3)

您可以使用

 library(help = "graphics")

将显示绘图功能列表,例如:

...
barplot                 Bar Plots
box                     Draw a Box around a Plot
boxplot                 Box Plots
boxplot.matrix          Draw a Boxplot for each Column (Row) of a
                        Matrix
bxp                     Draw Box Plots from Summaries
cdplot                  Conditional Density Plots
clip                    Set Clipping Region
contour                 Display Contours
coplot                  Conditioning Plots

答案 1 :(得分:0)

我发现此网站R plot gallery具有多种基本类型。单击它们可查看各种变体和函数调用。