使用ggplot創建geom_bar兩個表時出現問題。 我有兩個表:如何使用ggplot創建兩個表的geom_bar
1)
characteristic men_weekly_earnings
1 16 to 24 years 493
2 16 to 19 years 392
3 20 to 24 years 507
4 25 to 34 years 755
5 35 to 44 years 964
6 45 to 54 years 1011
7 55 to 64 years 1021
8 65 years and older 942
2)
characteristic women_weekly_earnings
1 16 to 24 years 451
2 16 to 19 years 357
3 20 to 24 years 468
4 25 to 34 years 679
5 35 to 44 years 781
6 45 to 54 years 780
7 55 to 64 years 780
8 65 years and older 740
每個表由不同的年齡有周薪數據。 我的目標是將兩個表格合併爲一個爲 like this。
x軸是特徵列,y軸是weekly_earnings列。
現在我試過這個代碼(男表,它不工作
ggplot(data = men) + geom_col(mapping = aes(x= characteristic,y= men_weekly_erning))
我現在該怎麼辦?
謝謝。
什麼是錯誤您收到? – mannym