0
如何在R上使用ggplot2
使用此數據創建分組條形圖?使用ggplot2在R上分組的條形圖
Person Cats Dogs
Mr. A 3 1
Mr. B 4 2
因此,它表明,顯示每人擁有寵物的數量,用這個佈局Bar chart of pets
我有這個數據的文本文件,並使用read.delim
閱讀上R.
我已經使用這段代碼,但它不會產生我正在尋找的棒圖。
ggplot(data=pets, aes(x=Person, y=Cats, fill=Dogs)) + geom_bar(stat="identity", position=position_dodge())
我是新來的R,任何幫助將不勝感激。
在此先感謝。