我正在尝试ggfortify
根据基于此数据的多元回归模型为对象生成交互式图。以下是我到目前为止所做的。如何ggfortify
使用 为该对象生成交互式绘图autoplotly
?
library(ggfortify)
library(autoplotly)
# Construct a simple multivariate regression model
# So it's something like this SWE ~ Mean.Z + Intensity.mean
Model = lm(formula = SWE ~ Mean.Z + Intensity.mean, data = df.mean.swe)
# Plot the model
lm.plot = autoplot(Model, label.size = 3) + theme_bw()
# Interactive
autoplotly(lm.plot)
Error in unique.default(x) :
unimplemented type 'expression' in 'HashTableSetup'
更新
好的,所以我可以通过首先指定要强化的感兴趣的地块来解决这个问题。虽然,我不知道为什么现在错误消失了。
lm.plot = autoplot(Model, label.size = 3, which = 1:2) + theme_bw()
但是现在autoplotly
没有正确显示QQ情节。