作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
试图弄清楚如何在创建现有格面板后将点或数据序列添加到现有格面板中。这与plot.points和/或更新功能有关吗?
# Initialize first plot
library(lattice)
a <- xyplot(Sepal.Length~Sepal.Width, groups=Species, data=iris
, subset=Species %in% levels(Species)[1:2])
print(a)
# Create second plot to overlay or merge with the first plot
b <- xyplot(Sepal.Length~Sepal.Width, groups=Species, data=iris
, subset=Species %in% levels(Species)[3])
# Initial attempt at merging plots:
library(latticeExtra)
print(c(a,b)) # this displays the data in an adjacent second panel
print(c(a,b,layout=c(1,1))) # and this only shows series "b"
最佳答案
我想您正在寻找as.layer
;试试这个。它也在latticeExtra
库中。
library(latticeExtra)
a + as.layer(b)
关于r - 合并或覆盖晶格面板中的xyplots,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19528505/
我可能使用了错误的术语,但正在寻求帮助。 我想为位于椭圆形状周边的网格生成 x,y 值数组。 这里有代码:http://people.sc.fsu.edu/~jburkardt/c_src/ellip
我是一名优秀的程序员,十分优秀!