我曾经使用下面的代码autoplot
创建简单lm
的绘图。但是当我autoplotly
用来制作交互式情节时,由 生成的标题消失了autoplot
,即使我使用ggplot2::ggtitle
,标题仍然没有出现。我怎样才能解决这个问题?CSV 可以从这里下载。
# Read file
df = read,csv(Mean_SWE.csv)
# Run the model
Model = lm(formula = SWE ~ Mean.Z + Intensity.mean, data = df)
# Plot
lm.plot.rsd = autoplot(Model, label.size = 3, which = 1) +
theme_bw()
autoplotly(lm.plot.rsd) +
ggplot2::ggtitle("Residuals vs Fitted")