R语言的DEMO

1、R语言的DEMO ---散点图
setwd("c://")
content25=read.table(file = "E:/R/20150706room6200chat-1.csv")

time<-content25$V1
cost<-content25$V2

print(time)

plot(time, cost, type="l",col="blue")

猜你喜欢

转载自wangqiaowqo.iteye.com/blog/2224947