-1

我绘制了一个图表,我想为其指定 xlim 和 ylim 值!但是它不起作用。这是我正在使用的功能:

DensityPlotF <- function (xx, plotname)
{
        library(RColorBrewer)
        library(latticeExtra)
        library(lattice)
        lattice.options(default.theme = standard.theme(color = FALSE))
        cols <- colorRampPalette(brewer.pal(11, "RdBu"))
        ppi <- 300
        png(filename = plotname, width=6*ppi, height=6*ppi, res=ppi)
        print(levelplot(xx$rho ~ xx$r + xx$z, panel = panel.levelplot.points, col.regions = cols, xlab="R (Å)", ylab="z (Å)", xlim=c(0,10.0), ylim=c(-30,30)))
        dev.off()
}

cl2d <- read.table("cl_2d.dat", header=TRUE)
colnames(cl2d) <- c("r", "z", "rho")
DensityPlotF(cl2d, "cl2d.png")

.dat 文件如下所示:

#r z rho
6.500000e+00 -4.250000e+01 3.397767e-01
6.500000e+00 -4.200000e+01 3.246126e-01
6.500000e+00 -4.150000e+01 3.301116e-01
6.500000e+00 -4.100000e+01 3.289452e-01
6.500000e+00 -4.050000e+01 3.264456e-01

最后,设置 xlim 和 xlim 之前的图形: 在此处输入图像描述

在我设置 xlim 和 ylim 之后,情节看起来很奇怪。有没有一种简单的方法可以一起显示图中的列(即连续的)?

在此处输入图像描述

4

1 回答 1

1

您想在 levelplot 中移动“ xlim=c(0,10.0), ylim=c(-30,30) ”,即在ylab
print(levelplot(.... ylab="z (Å)", xlim=c(0,10.0), ylim=c(-30,30)))
之后立即删除大括号

PS:点数不够评论

于 2016-05-27T02:55:54.053 回答