R Studio-大数据集,使图形看起来像条形图

时间:2019-03-19 16:18:38

标签: r graph linegraph

我正在运行一个具有2524行的大型数据集,当我想运行图形下方的绘图代码看起来像条形图时,我不知道为什么。我使用了ggplot2,它最终将数据更改为文本。

plot(SamAll$OpenSam, type="l", lwd=2, main= "2014-2018 Samsung Open Stock")

线条图确实是我想要实现的。 很好,谢谢。

1 个答案:

答案 0 :(得分:0)

也许您的变量被保存为一个因子。您可能需要将其更改为数字变量,或者可以在绘图函数中将其更改为数字:

plot( as.numeric(SamAll$OpenSam), 
  type="l", lwd=2, main= "2014-2018 Samsung Open Stock")

将以下内容作为说明性示例

# Save 2524 values as a factor
x = as.factor(floor(rnorm(2524, 100, 10)))
> plot(x, type="l", lwd=2)

我们得到以下信息:

xasfactor

x转换为数字

> plot( as.numeric(x), type="l", lwd=2)

现在我们获得了折线图

x as line