第4章 语法突破
2023-03-09 本文已影响0人
iBioinformatics
4.2.1 图形属性与数据的映射
> ggplot(mpg,aes(displ,hwy,colour=factor(cyl)))+
geom_line()+
theme(legend.position="none")
> ggplot(mpg,aes(displ,hwy,colour=factor(cyl)))+
geom_bar(stat="identity",position="identity",fill=NA)+
theme(legend.position="none")
> ggplot(mpg,aes(displ,hwy,colour=factor(cyl)))+
geom_bar(stat="identity",fill=NA)+
theme(legend.position="none")
> ggplot(mpg,aes(displ,hwy,colour=factor(cyl)))+
geom_bar(stat="identity")+
theme(legend.position="none")