001、theme_classic() 主题用来去除背景
a、使用默认的背景
type <- c('A', 'B', 'C', 'D', 'E', 'F', 'G') nums <- c(10,23,8,33,12,40,60) df <- data.frame(type = type, nums = nums) ## 测试数据 ggplot(df, aes(type, weight = nums)) + geom_bar() ## 使用默认的背景
绘图结果如下:
b、theme_classic() 主题去除背景
type <- c('A', 'B', 'C', 'D', 'E', 'F', 'G') nums <- c(10,23,8,33,12,40,60) df <- data.frame(type = type, nums = nums) ## 保持测试数据不变 ggplot(df, aes(type, weight = nums)) + geom_bar() + theme_classic() ## 使用 theme_classic()去除背景
如下为绘图结果:
标签:classic,背景,默认,theme,ggplot2,去除 From: https://www.cnblogs.com/liujiaxin2018/p/17243897.html