1
我有一個問題與使用ggplot2的R中的直方圖有關。我一直在努力從兩個不同的變量中直接表示一些值。在嘗試並在Stackoverflow中尋找一些解決方案後,我知道了,但是......有人知道如何將NAs計數打印爲新列,只是爲了比較兩個變量中的錯誤?在直方圖中繪製NA計數
這裏是R代碼:
i<-"ADL_1_bathing"
j<-"ADL_1_T2_bathing"
t1<-data.frame(datosMedicos[,i])
colnames(t1)<-"datos"
t2<-data.frame(datosMedicos[,j])
colnames(t2)<-"datos"
t1$time<-"t1"
t2$time<-"t2"
juntarParaGrafico<-rbind(t1,t2)
ggplot(juntarParaGrafico, aes(datos, fill = time)) +
geom_histogram(col="darkblue",alpha = 0.5, aes(y = ..count..), binwidth = 0.2, position = 'dodge', na.rm = F) +
theme(legend.justification = c(1, 1), legend.position=c(1, 1))+
labs(title=paste0("Distribution of ",i), x=i, y="Count")
這是輸出:
圖像有關這兩個變量的值,但沒有丟失吧:
謝謝!它幫助了我! –