search for: tp2307739p2307858

Displaying 1 result from an estimated 1 matches for "tp2307739p2307858".

2010 Jul 30
2
Need a help to plot bar for time series Rain data
Hey Guys, I am quite new to R, am trying to plot a bar plot for my monthly rainfall data from 1920 to 1990. For every year I have the data from January to December. I have created this code: data<-read.table("C://R//Data//Rain.txt", header=TRUE) data<-data[,2:13] Rdata<-data[1,] for(i in 2:79){Rdata<-c(Rdata,data[i,])} times<-ts(Rdata,start=1920,frequency=12)