0
大家好,特別是所有R程序員,我都需要你的幫助。我正在嘗試使std錯誤欄散點圖![enter image description here] [1]但我無法管理它。到現在爲止,我可以製作帶有標籤和45度角線的散點圖(我也需要)。如果有人幫助我,或者在我現有的代碼中添加一些對我非常有用的代碼。散點圖與std錯誤
我的代碼
Dataset <- read.table("AvgDis.csv",header=TRUE, sep="",
na.strings="NA", dec=".",
strip.white=TRUE)
plot(Dataset$True,Dataset$False,
xlim=c(0,100), ylim=c(0,100),
main="Average % of disorder",
xlab="True", ylab="False",
pch=19,col= "blue")
text(Dataset$True,Dataset$False,
labels=Dataset$MotifId,
cex= 0.7, pos=3)
abline(0,1)
數據,我使用:
False True MotifId
54.1666675 33.33333 aps
35.2040825 48.57143 dbox
44.3055575 94.44444 ken
70.37037 60 mdm2
1.6666675 0 met
72.222225 100 ptk
46.9212975 68.51852 scftrcp1
55.5555575 70.83333 siah
std錯誤是什麼? – dayne
您試圖輸入圖像,但不知何故被刪除。平均值(x)或平均值(y)或相關係數或迴歸線的CI可能存在偏差,但您尚未說明偏差。 –