[R] Zoo or TS
miya
ontiveros_paloma at yahoo.com
Sun Feb 22 19:01:32 CET 2009
Hello all,
I've been able to separate the columns now so that when I call NYT[,9] it
gives me just that column. I'm still trying to plot however. When I used the
previous if()plot() statement it plots something, but its not what I want. I
want to plot the rank vs time, but its just plotting the samething for 25
units, not changing at all. I know this is not correct since there are 45
different times and the title is present in all of them. What am I doing
wrong?
Thanks in advance.
Tony Breyal wrote:
>
> I think you need to put quotes around the column header name,
> something like: NYT["Title"]
>
> example:
>> my.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
>
> On 22 Feb, 04:41, miya <ontiveros_pal... at yahoo.com> 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 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 error that
>> Title
>> does not exist. Basically its saying that the headers do not exist as
>> objects. Can anyone please help.
>>
>> Below is what I've been trying to do and a sample of the data I am
>> working
>> with.
>>
>> Thanks in advance.
>>
>> Time Date Rank Topic Title Author
>> 0 xxxx 1 A J By PAUL
>> 0 xxxx 2 B K By PERRI
>> 0 xxxx 3 C L By WILL
>> 0 xxxx 4 D M By ANA
>> 1 xxxx 1 A J By PAUL
>> 1 xxxx 2 B L By WILL
>> 1 xxxx 3 C M By ANA
>> 1 xxxx 4 D K By PERRI
>>
>> if(NYT[Title]=="For Catholics, a Door to Absolution Is Reopened")
>> plot(NYT[Rank])
>>
>> Error in `[.data.frame`(NYT, Title) : object "Title" not found
>> --
>> View this message in
>> context:http://www.nabble.com/Zoo-or-TS-tp22143632p22143632.html
>> Sent from the R help mailing list archive at Nabble.com.
>>
>> ______________________________________________
>> R-h... at r-project.org mailing
>> listhttps://stat.ethz.ch/mailman/listinfo/r-help
>> PLEASE do read the posting
>> guidehttp://www.R-project.org/posting-guide.html
>> and provide commented, minimal, self-contained, reproducible code.
>
> ______________________________________________
> R-help at r-project.org mailing list
> https://stat.ethz.ch/mailman/listinfo/r-help
> PLEASE do read the posting guide
> http://www.R-project.org/posting-guide.html
> and provide commented, minimal, self-contained, reproducible code.
>
>
--
View this message in context: http://www.nabble.com/Zoo-or-TS-tp22143632p22149555.html
Sent from the R help mailing list archive at Nabble.com.
More information about the R-help
mailing list