从R中的csv文件绘制数据

时间:2019-06-12 15:04:10

标签: r

我是R语言的新手,并且正在处理csv文件中的一些数据。我想知道是否有人可以帮助我在RStudio中将数据绘制为折线图。下面是我正在绘制的csv中图表的图像,第二张是我试图从使用excel制作的图表中获得的图表的图片。 Chart Data Image of Chart

1 个答案:

答案 0 :(得分:-1)

使用ggplot2tidyverse软件包

`#' Make sure all packages are installed
 #' Load packages
 library(dplyr)
 library(tidyr)
 library(ggplot2)
  chart <- df %>%
    #' Get all variables into groupings for chart, exclude months
    gather(key = "group", value = "value", -MONTHS) %>%
    #' Use ggplot2 to plot
    ggplot(aes(x=MONTHS, y=value, group=group)) +
    #' Want a point and line chart with a clean white theme
       geom_point() + geom_line() + theme_minimal()`

这应该可以帮助您。您可以查看ggplot2的文档,以了解如何添加标题,标签等。