filled.contour in R 3.0.x throws error

风格不统一 提交于 2019-11-28 11:26:56
Roland

This happens if you use a non-standard API. You are allowed to do that, but cannot expect that it is maintained.

Change

.Internal(filledcontour(as.double(x), as.double(y), z, as.double(levels), 
                                                        col = col))

to

.filled.contour(as.double(x), as.double(y), z, as.double(levels), 
                            col = col)

The change was announced with the release notes:

The C code underlying base graphics has been migrated to the graphics package (and hence no longer uses .Internal() calls).

Have you ever heard of a "minimal reproducible example" (emphasis on "minimal")?

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!