[R] Time series

2009-02-15 Thread miya
Hello everyone. I am trying to plot data from a time series in R and have run across some problems. I was wondering if someone could help. I have data taken every 15 minutes of a list of rankings of 25 titles. I want to plot one of the article's titles's ranks as a time series. I've been trying if

[R] Zoo or TS

2009-02-22 Thread miya
Hi everyone, I'm trying to plot some data across time. I have a list of articles, ranks, date/times, authors, etc. Someone suggested using zoo and someone suggested using ts. I'm pretty new at this and have been trying a simple if() plot() statement, but it doesn't seem to work. I keep getting an

Re: [R] Zoo or TS

2009-02-22 Thread miya
df <- data.frame(header1=1:3, header2=1:3) >> my.df[header2] > Error in `[.data.frame`(my.df, header2) : object "header2" not found >> my.df["header2"] > header2 > 1 1 > 2 2 > 3 3 > > Hope that helps a little, > Tony Breyal &g

Re: [R] Zoo or TS

2009-02-22 Thread miya
2 2 > 3 3 > > Hope that helps a little, > Tony Breyal > > On 22 Feb, 04:41, miya wrote: >> Hi everyone, >> I'm trying to plot some data across time. I have a list of articles, >> ranks, >> date/times, authors, etc. Someone suggested using zoo

Re: [R] Zoo or TS

2009-02-22 Thread miya
df[header2] > Error in `[.data.frame`(my.df, header2) : object "header2" not found >> my.df["header2"] > header2 > 1 1 > 2 2 > 3 3 > > Hope that helps a little, > Tony Breyal > > On 22 Feb, 04:41, miya wrote: >>

[R] Creating a directory for my data

2009-03-10 Thread miya
Hi everyone, I am currently working with a very large data set. It is data collected a few times a day, so there are repeated titles in the data set. I want to assign an id number to each different title and enter this information in a directory that I can access whenever I am working with the dat

Re: [R] Creating a directory for my data

2009-03-11 Thread miya
Sorry, I did forget to add what it is I want to get. I wish to get a result like the following: Legend: ID Title 1 Article A 2 Article B 3 Article C 4 Article D ... i Article "N" -- View this message in context: http://www.nabble.com/Creating-a-d