当前位置: 首页 > article >正文

R语言中theme的调整技巧汇总-持续更新

1.如何扩充图片的上右下左位置的空白区域:
unit(c(1.1, 1, 0.4, 0.5), “cm”) 表示使用厘米作为单位设置各个方向的边距,c(1.1, 1, 0.4, 0.5) 对应的顺序是:上、右、下、左。

  theme(plot.margin = unit(c(1.1, 1, 0.4, 0.5), "cm")) # 增加上方的空白

2.如何调整图例中tick的颜色

# 修改图例的刻度颜色
p1 <- p1 + guides(
  fill = guide_colorbar(
    ticks.colour = "black",  # 将图例刻度颜色设置为黑色
    ticks.linewidth = 0.8      # 设置刻度线的宽度
  )
)

3.如何调整图例中线条的粗细: guides(fill = guide_legend(override.aes = list(color = “black”, linewidth = 0.5)))

p <- ggplot(data, aes(x = .data[[group_var]], y = .data[[te_var]], fill = .data[[group_var]])) +
    geom_errorbar(width = 0.08, linewidth = 1, position = position_dodge(0.9), stat = "boxplot") +
    geom_boxplot(outlier.size = -1, width = 0.3, position = position_dodge(0.9), fatten = 1, linewidth = 1) +
    theme_classic() +
    labs(y = y_label, x = x_label) +
    scale_y_continuous(limits = y_limits, breaks = y_breaks) +
    theme(
      panel.background = element_rect(fill = "white", colour = "black", linewidth = 0.5),
      axis.title.y = element_text(size = 25, face = "bold", color = "black"),
      axis.title.x = element_blank(),
      axis.text = element_text(size = 17, face = "bold", color = "black"),
      legend.position = c(0.91, 0.92),
      legend.title = element_blank(),
      legend.text = element_text(size = 8, face = "bold", family = "sans")
    ) +
    scale_fill_manual(values = fill_values) +
    # guides(fill = guide_legend(override.aes = list(alpha = 0.8, size =0.1)))  # 调整图例符号的大小和透明度
    guides(fill = guide_legend(override.aes = list(color = "black", linewidth = 0.5)))

4.如何调整图例中字体的类型,大小

      legend.text = element_text(size = 8, face = "bold", family = "sans")

http://www.kler.cn/a/282383.html

相关文章:

  • SOP搭建:企业标准化操作程序构建与实施指南
  • 大模型(LLMs)进阶篇
  • 【WPF】Prism学习(三)
  • 《C语言程序设计现代方法》note-5 数组
  • git本地分支推送到远程和远程pull到本地
  • 跟我学C++中级篇——RAII
  • Challenge——spfa
  • USB5834数据采集卡30路模拟量采集卡DAQ卡——阿尔泰科技
  • 本地生活本地推软件有哪些?使用过程中需要关注哪些要点?
  • 三分钟总结开源流程表单的优势特点
  • C语言—字符函数和字符串函数
  • 应急响应--日志分析
  • YOLO | YOLO目标检测算法(YOLO-V1)
  • 浙大联合港中深发布AI医疗最新报告,全面审视「虚拟现实+人工智能」
  • 基于 ASP.NET的教材管理信息系统的设计与实现(最新定制开发,阿龙原创设计)✅
  • 深入理解Spring Security
  • C语言 | Leetcode C语言题解之第382题链表随机节点
  • 直播电商如何实现精细化运营,破除流量互卷的困境?
  • HTTP/1.1
  • 防泄密的方法都有哪些?
  • Mac 去除自动生成.DS_Store文件的方法
  • 通信协议——Modbus 讲明白了
  • python爬虫,使用pyppeteer异步,爬取,获得指定标签内容
  • 【lua实战】lua中pairs和ipairs的区别
  • 2、Spring手写系列-实现 Bean 的定义、注册、获取
  • 用于不平衡分类的 Bagging 和随机森林