R:格子图/线框:将面板图拆分成单个图

时间:2015-05-06 01:57:48

标签: r lattice

如何强制线框面板生成单个图而不是一个面板图/网格图?原因是,如果我必须生成一个Sweave / Pdf文件原始线框图,R产生哪个,你可以在我的其他帖子中看到

Faceted Lattice Plots in R, e.g., wireframes: How to remove strips and add 1-Line subtitles

看起来很小,特别是如果我有很多单线框图。我可以在Sweave中更轻松地处理单个地块。

1 个答案:

答案 0 :(得分:4)

Lattice允许您指定绘图的列数和行数,如果使用多页设备,则会将这些列和行溢出到相邻页面上:

for (int i = 0; i < submissionTime.length; i ++)
        {
            String strDate = submissionTime[i];
            SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmss");
            Date getDate = sdf.parse(strDate);
            getDate.getTime();
            convertedDuration = timeConverted + (getDate.getTime());
            System.out.println("convertedDuration : "+ convertedDuration);
}

在控制台设备上,他们创建了新的绘图,这些绘图在绘图设备中叠加,您可以&#34;向后滚动&#34;键击可能会因您未说明的操作系统而异。可以使用 pdf("nine.pdf", onefile=TRUE, paper="special") wireframe(pred~Sepal.Width+Petal.Width|interaction(Species,Petal.Length), pd, drape=FALSE,scale=list(arrows=FALSE), subset=(Species=="setosa"), layout=c(1,1,9)) dev.off() 中的路线访问eps格式。