我的代码未生成每月趋势线图

时间:2019-05-22 08:46:42

标签: r ggplot2 linegraph timeserieschart

我有一个“日期”列和“值”列。我在互联网上进行了研究,并尝试了所有可能的方法,但没有显示出趋势线图。我完全困惑我的数据中发生了什么。我在下面分享了我的代码:

ggplot(data = New, aes(x = OrderDate, y = TotalAmountWithGST))+
geom_line(color = "#00AFBB", size = 2) + scale_x_date(date_labels = "%b/%Y")

enter image description here

ggplot(x, aes(x = OrderDate, y = TotalAmountWithGST)) + 
geom_line()+
theme_minimal()

enter image description here 我试图绘制显示每月趋势的折线图,但不知何故我得到的图类似于条形图,但不是折线图。

1 个答案:

答案 0 :(得分:0)

您需要在ggplot代码中添加geom_smooth

如果没有示例数据,很难复制一个有效的示例,但这应该可以使您走上正确的道路。