5. 参考ggplot2预设主题,绘制自己的theme ggplot2的预设主题已经写过了,参考R语言可视化及作图9--主题函数。 以theme_linedraw()为例,查看这个主题设置了什么参数 theme_linedraw ## function (base_size = 11, base_family = "", base_line_size = base_size/22, ## base_rect_size = base_size/22)...
p <- ggplot(mtcars) + geom_point(aes(x = wt, y = mpg)) p + theme_base()#和base包作图的效果一样 1. 2. 3. 主题与图形对应展示如下 除此之外,这个包还内置了一些可以直接套用的颜色 p2 <- ggplot(mtcars, aes(x = wt, y = mpg, colour = factor(gear))) + geom_point() p2 p2 +...
R语言ggiraphExtra包 theme_clean2函数使用说明返回R语言ggiraphExtra包函数列表 功能\作用概述: ggCor的清洁主题 语法\用法: theme_clean2(base_size = 12, xangle = 45, yangle = 0) 参数说明: base_size : 基本字体大小 xangle : x轴文本角度 yangle : y轴文本角度 ...
#我们先来看看ggplot2默认的主题设置函数theme_gray()的源代码 theme_gray#函数名不加括号可获得函数源代码 ## function (base_size = 11, base_family = "") ## { ## half_line <- base_size/2 ## theme(line = element_line(colour = "black", size = 0.5, linetype = 1, ## lineend = "...
ds_theme_set(new = "theme_bw", args = NULL, base_size = 11, bold_title = TRUE, ...) 参数说明: new : 预先构建的ggplot2主题。默认为filename_points_covered_by_landmarks args : 要传递给ggplot2主题函数的参数。默认为“NULL”。 base_size : 如果“args”为“NULL”,filename_points_...
R语言fontMPlus包 theme_ipsum_mplus_mn1函数使用说明返回R语言fontMPlus包函数列表 功能\作用概述: M+MN Type 1字体是日语的固定全宽M+Type-1和字母表的固定半宽M+MN Type-1的组合。 语法\用法: theme_ipsum_mplus_mn1(base_family = mplus.fontfamilies$`1mn`, plot_title_family = mplus.font...
base = list( family = "Arial", size = 12, color = "black" ), title = list( size = 20, color = "red" ), subtitle = list( size = 14, color = "blue" ), axis.title = list( size = 16, color = "green" ), legend.title = list( ...