R语言画图——添加数学表达式和R2 代码如下: filepath <- file.choose() df1 <- read.csv(filepath, header = T) df1 library(ggplot2) QTs <- ggplot(data = df1, aes(x = Ts, y = Q10, shape = factor)) + geom_point(size = 3) + <