1
我試圖用我的數據字段中的另一列標記ECDF圖的點。 目前我使用此:標籤ECDF繪圖點
untouched = read.table("results-untouched.tsv", sep="\t")
plot.ecdf(untouched$V4, xlim=c(0.75,1.25), ylim=c(0,1), col='green', verticals=T)
圖表好吧,但我再無力標籤添加到分。標籤將在untouched$V1
。
任何想法如何做到這一點?