是否可以在R中创建没有连续数据的三维等高线图?

时间:2013-01-17 08:57:40

标签: r plot ggplot2 gis contour

我想用x,y,z数据创建变量z的轮廓。但是,似乎我们需要按递增顺序提供数据。

我尝试使用一些代码,但它给了我错误。

我尝试了以下代码:试用1:

age2100 <- read.table("temp.csv",header=TRUE,sep=",")

x <- age2100$x
y <- age2100$y
z <- age2100$z

contour(x,y,z,add=TRUE,col="black")

我收到以下错误

Error in contour.default(x, y, z, add = TRUE, col = "black") : increasing 'x' and 'y' values expected

然后我尝试使用ggplot2来创建轮廓。我使用了以下代码:

library("ggplot2")
library("MASS")
library("rgdal")
library("gpclib")
library("maptools")
age2100 <- read.table("temp.csv",header=TRUE,sep=",")
v <- ggplot(age2100, aes(age2100$x, age2100$y,z=age2100$z))+geom_contour()
v

我收到以下错误:

警告讯息:

Not possible to generate contour data 

请在以下位置查找数据https://www.dropbox.com/s/mg2bo4rcr6n3dks/temp.csv

有人能告诉我如何从temp.csv的第三个变量(z)创建轮廓数据吗?我需要多次这样做,所以我想在R而不是Arcgis上做。

1 个答案:

答案 0 :(得分:8)

以下是使用interp包中的akima进行插值的示例:

age2100 <- read.table("temp.csv",header=TRUE,sep=",")

x <- age2100$x
y <- age2100$y
z <- age2100$z

require(akima)

fld <- interp(x,y,z)

par(mar=c(5,5,1,1))
filled.contour(fld)

enter image description here

这是使用image函数的替代图(这允许一些灵活性来添加更低级别的绘图函数(需要image.scale函数,找到here):

source("image.scale.R") # http://menugget.blogspot.de/2011/08/adding-scale-to-image-plot.html

x11(width=5, height=6)
layout(matrix(c(1,2), nrow=1, ncol=2), widths=c(4,1), height=6, respect=TRUE)
layout.show(2)

par(mar=c(4,4,1,1))
image(fld)
contour(fld, add=TRUE)
points(age2100$x,age2100$y, pch=".", cex=2)

par(mar=c(4,0,1,4))
image.scale(fld$z, xlab="", ylab="", xaxt="n", yaxt="n", horiz=FALSE)
box()
axis(4)
mtext("text", side=4, line=2.5)

enter image description here