O guia completo: como alterar o tamanho da fonte em gráficos base r
Você pode usar a seguinte sintaxe para alterar o tamanho da fonte de vários elementos em gráficos R básicos:
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
Os exemplos a seguir mostram como usar esta sintaxe com a seguinte nuvem de pontos na base 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 ')
Exemplo 1: Altere o tamanho da fonte do título
O código a seguir mostra como alterar o tamanho da fonte do título do gráfico:
#create scatterplot with increased font size of title plot(df$x, df$y, main=' Title ', sub=' Subtitle '. cex.main= 2 )
Exemplo 2: Alterar o tamanho da fonte da legenda
O código a seguir mostra como alterar o tamanho da fonte da legenda do gráfico:
#create scatterplot with increased font size of subtitle plot(df$x, df$y, main=' Title ', sub=' Subtitle '. cex.sub= 2 )
Exemplo 3: Alterar o tamanho da fonte dos rótulos dos eixos
O código a seguir mostra como alterar o tamanho da fonte dos rótulos dos eixos do gráfico:
#create scatterplot with increased font size of axis labels plot(df$x, df$y, main=' Title ', sub=' Subtitle '. cex.lab= 2 )
Exemplo 4: Alterar o tamanho da fonte do texto do eixo
O código a seguir mostra como alterar o tamanho da fonte do texto do eixo da plotagem:
#create scatterplot with increased font size of axis text plot(df$x, df$y, main=' Title ', sub=' Subtitle '. cex.axis= 2 )
Recursos adicionais
Os tutoriais a seguir explicam como realizar outras operações de rastreamento comuns em R:
Como adicionar sobrescritos e subscritos a gráficos em R
Como alterar o tamanho da fonte em gráficos ggplot2
Como usar fonte itálica em R