📜  ggplot2 多行 geom_line - R 编程语言代码示例

📅  最后修改于: 2022-03-11 14:51:59.956000             🧑  作者: Mango

代码示例2
# Visualization
ggplot(df, aes(x = date, y = value)) + 
  geom_line(aes(color = variable, linetype = variable)) + 
  scale_color_manual(values = c("darkred", "steelblue"))