我在用 ggplot2 绘制数据框的子集时遇到问题。我的 df 就像:
df = data.frame(ID = c('P1', 'P1', 'P2', 'P2', 'P3', 'P3'),
Value1 = c(100, 120, 300, 400, 130, 140),
Value2 = c(12, 13, 11, 16, 15, 12))
我现在如何仅针对s和进行Value1
绘图?例如我试过:Value2
ID
'P1'
'P3'
ggplot(subset(df,ID=="P1 & P3") +
geom_line(aes(Value1, Value2, group=ID, colour=ID)))
但我总是收到错误消息。