scatterplot3d 问题:“'closure' 类型的对象不可子集化”
scatterplot3d trouble: " object of type 'closure' is not subsettable"
当我尝试使用 scatterplot3d 包绘制数据集 (Data source) 的回归平面时收到一条错误消息。
错误说:
Error in scatterplot3d$plane3d :
object of type 'closure' is not subsettable
我可以很容易地绘制数据,但是当我尝试绘制拟合模型时会弹出错误。
这是我的代码:
scatterplot3d(CO2umol,NEE,GS,pch=20, highlight.3d=TRUE, main="NEE: AC vs EC vs MOD")
fit <- lm( GS ~ CO2umol+NEE, OBSvsMOD_NEE_hourly)
scatterplot3d$plane3d(fit)
你有线索吗?我想知道 NA,但我不太确定如何面对这个问题。
干杯!
试试这个:
ss <- scatterplot3d(CO2umol,NEE,GS,pch=20,
highlight.3d=TRUE, main="NEE: AC vs EC vs MOD")
fit <- lm( GS ~ CO2umol+NEE, OBSvsMOD_NEE_hourly)
ss$plane3d(fit)
您应该使用 scatterplot3d
(ss$plane3d
) 返回的 对象的 plane3d
元素,而不是尝试在 scatterplot3d
本身中找到一个 plane3d
元素 ...
当我尝试使用 scatterplot3d 包绘制数据集 (Data source) 的回归平面时收到一条错误消息。
错误说:
Error in scatterplot3d$plane3d : object of type 'closure' is not subsettable
我可以很容易地绘制数据,但是当我尝试绘制拟合模型时会弹出错误。
这是我的代码:
scatterplot3d(CO2umol,NEE,GS,pch=20, highlight.3d=TRUE, main="NEE: AC vs EC vs MOD")
fit <- lm( GS ~ CO2umol+NEE, OBSvsMOD_NEE_hourly)
scatterplot3d$plane3d(fit)
你有线索吗?我想知道 NA,但我不太确定如何面对这个问题。
干杯!
试试这个:
ss <- scatterplot3d(CO2umol,NEE,GS,pch=20,
highlight.3d=TRUE, main="NEE: AC vs EC vs MOD")
fit <- lm( GS ~ CO2umol+NEE, OBSvsMOD_NEE_hourly)
ss$plane3d(fit)
您应该使用 scatterplot3d
(ss$plane3d
) 返回的 对象的 plane3d
元素,而不是尝试在 scatterplot3d
本身中找到一个 plane3d
元素 ...