Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用双小波包的绘图功能,并且不断收到此消息
轮廓():圆形/长seglist - 设置选项(“max.contour.segments”)> 25000?
我在 R 中尝试了以下代码,但它不起作用
options(max.contour.segments > "25000")
如何增加 R 中的 max.contour.segments。
这个怎么样?
options("max.contour.segments"= 300000)
或您想要的任何正整数。 您可以通过以下方式检查当前值:
options("max.contour.segments")