0
このグラフに複数のデータセットをプロットしたいが、どのように把握できないのか。 t
、u
、v
、w
を既に稼働させているxyplot
に置く必要があります。xyplotを使用してRで複数のデータセットをプロットする
library(lattice)
x <- rnorm(250, 5, .5)
y <- rnorm(250, 5, .4)
t <- rnorm(200, 6, .7)
u <- rnorm(200, 6, .6)
v <- rnorm(150, 7, .9)
w <- rnorm(150, 7, .8)
xyplot(y ~ x, xlab="", ylab="",
par.settings = list(axis.line = list(col="transparent")),
panel = function(x, y,t,u,...) {
panel.xyplot(x, y, col=3, pch=16)
panel.rug(x, y, col=8, x.units = rep("snpc", 2), y.units = rep("snpc",
2), ...)})
[ggplot2](http://ggplot2.tidyverse.org/reference/aes_group_order.html)は簡単な方法です。 – Enigma