libraryggplot2 ggplotdata aesgroup value color = group ++ geom_boxplotalpha=01 outliersize=0 size=1 width=055 fill=transparent ++ theme_bwbase_size = 16 ++ geom_jitter position=position_jitter02
The error message suggests that the function scale_y_scientific() is not recognized. This could be due to the package that contains this function not being loaded or not being installed.
To resolve this issue, you can try installing and loading the scales package, which contains the scale_y_scientific() function. You can do this by running the following code:
install.packages("scales") # Install the scales package
library(scales) # Load the scales package
After installing and loading the scales package, you should be able to use the scale_y_scientific() function without any issues
原文地址: http://www.cveoy.top/t/topic/ii3s 著作权归作者所有。请勿转载和采集!