她想在美国发现各州的罪行。因此,她绘制了“USArrests”数据集,以构建不同州谋杀案数量的条形图。
以下命令给出错误: ggplot(USArrests,aes(x = row.names(USArrests),y = USArrests $ Murder,lab))+ geom_bar()+ theme(axis.text.x = element_text(angle = 90,hjust = 1))
错误: “stat_count()不得与y审美一起使用”。她能做些什么来纠正这个问题?
请建议正确的命令。感谢
答案 0 :(得分:0)
这是一个非常常见的问题,请参阅this。只需使用geom_col
代替geom_bar,并添加row.names
作为新变量以避免进一步的问题:
USArrests$states <- row.names(USArrests)
ggplot(USArrests, aes(x = states, y = Murder)) +
geom_col() +
theme(axis.text.x=element_text(angle=90, hjust=1))