ggplot2绘图系统
阅读原文时间:2023年07月13日阅读:3

ggplot2包实现了一个在R中基于全面一致的语法创建图形时的系统 。在ggplot2中,图是采用串联起来(+)号函数创建的。详细内容参见《ggplot2:数据分析与图形艺术》,这里只简要说明。以后深入之后做补充!

散点图:

library(ggplot2)
     
ggplot(data=mtcars, aes(x=wt, y=mpg)) +
                 
geom_point() +
                  labs(title="Automobile
Data", x="Weight", y="Miles Per Gallon")

条形图:

library(ggplot2)
      
library(gcookbook)
      
ggplot(pg_mean, aes(x=group, y=weight)) +
geom_bar(stat="identity")

折线图:

ggplot(BOD, aes(x=Time, y=demand)) +
geom_line(stat="identity")

BOD1=BOD
     
BOD1$Time=factor(BOD1$Time)

ggplot(BOD1,aes(x=Time,y=demand,group=1))+geom_line(linetype="dashed",size=1,colour="blue")+geom_point()

library(MASS)
ggplot(birthwt,aes(x=factor(race),y=bwt))+geom_boxplot()+stat_summary(fun.y
= "mean",geom = "point",shape=23,size=3,fill="white")

手机扫一扫

移动阅读更方便

阿里云服务器
腾讯云服务器
七牛云服务器

你可能感兴趣的文章