1. 程式人生 > >R語言畫散點圖

R語言畫散點圖

setwd("/home/yc/") #設定工作目錄
data = read.table("cancer.txt",sep=",") //讀取文字中的資料,sep 表示分隔符
plot(data[,2],data[,1])