Base Graphics
Cars93
layout()
axis(side, ...)
text()
mtext()
legend(x, y, legend, ...)
x
y
ggplot2
ggplot()
aes()
stat_*()
stat_bin()
stat_density()
stat_boxplot()
stat_ydensity()
Type
DriveTrain
facet_wrap()
Corrplot
NA
scatterplot3d()
aplpack
faces()
pairs()
vcd
mosaic()
stat_function(fun = dnorm)
stat_function(fun = dt)
stat_function(fun = dchisq)
stat_function(fun = dexp)
stat_function(fun = df)
stat_function(fun = dgamma)
stat_function(fun = dunif)
stat_function(fun = log10)
stat_function(fun = sin), stat_fuction(fun = cos)
# t-분포 : fun = dt ggplot(data.frame(x=c(-3,3)), aes(x=x)) + stat_function(fun=dt, args=list(df=2), colour="red", size=2) + ggtitle("t-Distribution of df=2")