R可视化——基于ggplot2包绘图的模板主题样式汇总
绘制基本散点图

ggplot2默认主题
1、theme_gray()

2、theme_bw()

3、theme_classic()

4、theme_light()

5、theme_void()

6、theme_linedraw()

7、theme_minimal()

8、theme_dark()


ggthemes拓展主题
1、theme_clean()

2、theme_calc()

3、theme_economist()

4、theme_igray()

5、theme_fivethirtyeight()

6、theme_pander()

7、theme_foundation()

8、theme_base()

9、theme_par()

10、theme_gdocs()

11、theme_map()

12、theme_few()

13、theme_tufte()

14、theme_stata()

15、theme_excel()

16、theme_wsj()

17、theme_hc()

18、theme_solid()

19、theme_solarized()

ggprism包拓展主题
ggprism包绘制GraphPad prism主题样式图形:

示例:





BBC风格---bbplot
具体细节可参见文章:https://www.jianshu.com/p/c1436793ad67

ggthemr包配置主题
使用方式:先通过ggthemr()函数设置主题,然后绘制图形即可:
1、flat

2、flat dark

3、solarized

4、camouflage

5、chalk

6、copper

7、dust

8、earth

9、fresh

10、grape

11、grass

12、greyscale

13、light

14、lilac

15、pale

16、sea

17、sky
自定义主题
通过theme()函数中不同参数自定义属于自己风格的主题,具体可参照此文章:https://www.jianshu.com/p/6cc0c17e30ce
