假设我有这个数据集:
x <- rnorm(1000)
y <- rnorm(1000, 2, 5)
line.color <- sample(rep(1:4, 250))
line.type <- as.factor(sample(rep(1:5, 200)))
data <- data.frame(x, y, line.color, line.type)
我试图通过 line.type 和 line.color 的交互来绘制 x 和 y 变量组。此外,我想使用 line.type 指定线型,使用 line.color 指定颜色。如果我写这个:
ggplot(data, aes(x = x, y = y, group = interaction(line.type, line.color), colour = line.color, linetype = line.type)) + geom_line()
它有效,但如果我尝试像这样使用 aes_string:
interact <- c("line.color", "line.type")
inter <- paste0("interaction(", paste0('"', interact, '"', collapse = ", "), ")")
ggplot(data, aes_string(x = "x", y = "y", group = inter, colour = "line.color", linetype = "line.type")) + geom_line()
我得到错误:
Error: geom_path: If you are using dotted or dashed lines, colour, size and linetype must be constant over the line
我究竟做错了什么?我需要使用 aes_string 因为我有很多变量要绘制。