对于数据框df
,我有metric
的大量离散值及其计数cnt
我想获得bar plot
的每个离散值的metric
个计数。
所以我做了以下几点,
df <- read.csv("metric.csv", header=T)
df$metric <- as.factor(df$metric)
ggplot(df, aes(x=metric, y=cnt)) +
geom_bar(stat = 'identity')
上面我得到了一个像下面这样的空图 - 为什么?
我用于数据框df
的数据位于此处 - http://wikisend.com/download/569376/metric.csv
如何从这些数据中获得条形图?