2017-06-15 53 views
-3

enter image description here當執行下面R代碼裏面,收到錯誤,如: -ERROR IN GGPLOT IN的Rx變量是離散

代碼: -

ggplot(train,aes(x = Pclass,fill=factor(Survived)))+ 
geom_histogram(width = 0.5)+ 
xlab("Pclass")+ 
ylab("TotalCount")+ 
labs(fill="Survived") 

錯誤: -

Error: StatBin requires a continuous x variable the x variable is discrete. Perhaps you want stat="count"?

可能是什麼可能的原因? 請幫忙。 感謝

+0

你想繪製直方圖? – AK88

+0

@ AK88:是...... –

+0

你的數據是什麼樣的? – AK88

回答

0

試試這個可能:

ggplot(train,aes(x = Pclass,fill=factor(Survived)))+ 
    geom_bar(width = 0.5)+ 
    xlab("Pclass")+ 
    ylab("TotalCount")+ 
    labs(fill="Survived") 
+0

對不起:得到如下錯誤:Error:StatBin需要連續的x變量,x變量是離散的。也許你想stat =「count」? –

+0

現在呢? – AK88

+0

非常感謝。請告訴我我在做什麼錯誤 –