我已从SQL导出数据(2列)。当我尝试使用ggplots(qplot)来创建直方图时,我得到错误:"提供给连续比例的离散值。"但是,我试图制作直方图的两列是连续变量。数据如下所示:
V1:321.12,346.54,4563.45等
V2:2,1,4,6,20,24,12等
我的R代码如下所示:
qplot(myTable$V1,
geom="histogram",
main = "Histogram for V1",
xlab = "V1",
ylab = "Count",
fill = I("green"),
col = I("blue"),
alpha = (.8)) + scale_y_continuous(labels = comma)
+ scale_x_continuous(labels = comma) + theme(legend.position = "none")
在SQL中,两个变量都是浮点型变量。如何让R将这些变量视为连续变量而不是离散变量?
注意:其他帖子建议在R中使用 - (a)as.numeric(),但后来我收到错误消息"“警告消息:由强制引入的NAs”或(b)R中的geom_box;但我想使用geom_hist。