Hello, I use JupyterLab for R.
The ggplot package in R produce nice figures, however, the text font size are too small in these figures.
For example:
library(tidyverse)
data(mtcars)
ggplot(data = mtcars, aes(x = wt, y = mpg))+
geom_point(size = 4)
Can anyone solve this problem?