码迷,mamicode.com
首页 > 其他好文 > 详细

ggplot2——主题篇

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

标签:r   ggplot2   ggthemes   主题   

如何插入主题?

方法一:

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——主题篇

标签:r   ggplot2   ggthemes   主题   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!