我正在运行一个具有2524行的大型数据集,当我想运行图形下方的绘图代码看起来像条形图时,我不知道为什么。我使用了ggplot2,它最终将数据更改为文本。
plot(SamAll$OpenSam, type="l", lwd=2, main= "2014-2018 Samsung Open Stock")
线条图确实是我想要实现的。 很好,谢谢。
答案 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)
我们得到以下信息:
将x
转换为数字
> plot( as.numeric(x), type="l", lwd=2)
现在我们获得了折线图