首页 > 其他 > 详细

ggplot2——主题篇

时间:2015-08-04 00:37:01      阅读:398      评论:0      收藏:0      [点我收藏+]

如何插入主题?

方法一:

library(ggplot2)
set.seed(2015) 
diamond.part<-diamonds[sample(nrow(diamonds),100),] 
b = ggplot(diamond.part, aes(x = carat, y = price)) + 
      geom_point(aes(colour = color))
b + theme_grey()

方法二:

library(ggplot2)
set.seed(2015) 
diamond.part<-diamonds[sample(nrow(diamonds),100),] 
b = ggplot(diamond.part, aes(x = carat, y = price)) + 
      geom_point(aes(colour = color))
b + theme_set(theme_grey())



ggplot2自带的两个主题:

theme_grey() 、theme_bw()

技术分享
技术分享


安装主题包ggthemes:

theme_economist() 、theme_economist_white() 、theme_wsj() 、theme_excel() 、theme_few() 、theme_foundation() 、theme_igray() 、theme_solarized() 、theme_stata() 、theme_tufte()

技术分享

技术分享

技术分享

技术分享

技术分享

技术分享

技术分享

技术分享

技术分享

技术分享

版权声明:转载请注明出处,谢谢!

ggplot2——主题篇

原文:http://blog.csdn.net/bone_ace/article/details/47267505

(0)
(1)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!