我正在使用里约热内卢,我有一个sample.csv
,如下所示
hour,count
0300,0
0300,0
0300,1
0300,1
0300,2
0301,1
0301,2
0301,2
0301,3
我运行以下命令:
$ < sample.csv Rio -ge 'g + geom_bar(df, aes(hour, count))' | display
我得到
display.im6: no decode delegate for this image format `/tmp/magick-Gvr3kRZh' @ error/constitute.c/ReadImage/544.
据我所知geom_bar首先期望数据集是df
,然后是列,我不确定为什么我没有看到图表,有人知道我错过了什么?
谢谢
请参阅 docs.ggplot2.org/0.9.3.1/geom_bar.html。它首先需要映射,然后是数据。而且您实际上不必为数据指定df
,因为它已在 g
中捕获。
y
美学,你需要指定stat='identity'
。