完整指南:如何更改 base r 图中的字体大小


您可以使用以下语法更改基本 R 图中各种元素的字体大小:

 plot(df$x, df$y, main=' Title ', sub=' Subtitle ',
     cex.main= 2 , #change font size of title
     cex.sub= 2 , #change font size of subtitle
     cex.lab= 2 , #change font size of axis labels
     cex.axis= 2 ) #change font size of axis text  

以下示例展示了如何将此语法与基础 R 中的以下点云一起使用:

 #create data frame
df <- data. frame (x=c(1, 2, 3, 4, 5, 6),
                 y=c(5, 8, 12, 16, 25, 33))

#create scatterplot with all default font sizes
plot(df$x, df$y, main=' Title ', sub=' Subtitle ')

示例 1:更改标题字体大小

以下代码显示了如何更改绘图标题的字体大小:

 #create scatterplot with increased font size of title
plot(df$x, df$y, main=' Title ', sub=' Subtitle '.
     cex.main= 2 ) 

示例2:更改字幕字体大小

以下代码显示了如何更改绘图副标题的字体大小:

 #create scatterplot with increased font size of subtitle
plot(df$x, df$y, main=' Title ', sub=' Subtitle '.
     cex.sub= 2 ) 

示例 3:更改轴标签的字体大小

以下代码显示如何更改绘图轴标签的字体大小:

 #create scatterplot with increased font size of axis labels
plot(df$x, df$y, main=' Title ', sub=' Subtitle '.
     cex.lab= 2 ) 

示例4:更改轴文本的字体大小

以下代码显示如何更改绘图轴文本的字体大小:

 #create scatterplot with increased font size of axis text
plot(df$x, df$y, main=' Title ', sub=' Subtitle '.
     cex.axis= 2 ) 

其他资源

以下教程解释了如何在 R 中执行其他常见跟踪操作:

如何在 R 中的绘图中添加上标和下标
如何更改 ggplot2 绘图中的字体大小
如何在R中使用斜体字体

添加评论

您的电子邮箱地址不会被公开。 必填项已用*标注