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.
当一个人使用package(rworldmap)时,当一个人正在制作等高线图时,例如:
package(rworldmap)
X <- Longitude Y <- Latitude contour(x=X, y=Y, z=Z, xlim=c(min(X),max(X)), ylim=c(min(Y),max(Y)), nlevels=15)
这个等高线图怎么会出现在世界地图上?
其实很简单,只要加上:
plot(getMap())
在你的轮廓声明之后。