我正在使用 R 中的“分形”包来尝试使用“确定性”函数在时间序列中测试确定性。一切都很顺利,但是当我尝试用结果绘制条形图时,出现以下错误。
# test for determinism in the default 'beamchaos' dataset
beam.det <- determinism(beamchaos, olag=30)
print(beam.det)
plot(beam.det)
Error in xypolygon(xx, yy, lty = boxlty[i], lwd = boxlwd[i], border = boxcol[i]) : numerical color values must be >= 0, found -1
该函数的手册中使用了相同的代码作为示例,所以我很惊讶它会抛出这个错误:https ://rdrr.io/rforge/fractal/man/determinism.html
我想知道这个问题的原因和解决方案可能是什么。提前谢谢了!