ggplot2——主題篇

九茶發表於2015-08-07

目錄:

(更多內容請見:R、ggplot2、shiny 彙總


如何插入主題?

方法一:

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包的十個主題:

安裝ggthemes包以後便可使用如下十個主題:

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

主題效果:

這裡寫圖片描述

這裡寫圖片描述

這裡寫圖片描述

這裡寫圖片描述

這裡寫圖片描述

這裡寫圖片描述

這裡寫圖片描述

這裡寫圖片描述

這裡寫圖片描述

這裡寫圖片描述



轉載請註明出處,謝謝!(原文連結:http://blog.csdn.net/bone_ace/article/details/47267505

相關文章