Re: [R] Help to solve an Error

2015-06-04 Thread Jim Lemon
000 >> To: jacksonmrodrig...@gmail.com >> Subject: Re: [R] Help to solve an Error >> >> Hi Jackson, >> It looks like you have picked up the HTML code for the right angle >> bracket. Try replacing this with a right angle bracket: >> >> grecent<-subset(g

Re: [R] Help to solve an Error

2015-06-04 Thread John Kane
Hi Jim, It is an problem in Gavin Simpson's code itself. Bad translation from R to HMTL it appears John Kane Kingston ON Canada > -Original Message- > From: drjimle...@gmail.com > Sent: Thu, 4 Jun 2015 21:22:37 +1000 > To: jacksonmrodrig...@gmail.com > Subject: Re:

Re: [R] Help to solve an Error

2015-06-04 Thread John Kane
cksonmrodrig...@gmail.com > Sent: Thu, 4 Jun 2015 12:20:58 +0200 > To: r-help@r-project.org > Subject: [R] Help to solve an Error > > Hi, > > > > I want to apply the codes of Gavin Simpson from > http://www.fromthebottomoftheheap.net/2011/06/11/global-warming-since-

Re: [R] Help to solve an Error

2015-06-04 Thread Jim Lemon
Hi Jackson, It looks like you have picked up the HTML code for the right angle bracket. Try replacing this with a right angle bracket: grecent<-subset(gtemp,subset = Year>=1995,select = c(Year,Annual)) Jim On Thu, Jun 4, 2015 at 8:20 PM, Jackson Rodrigues wrote: > Hi, > > > > I want to apply t

Re: [R] Help to solve an Error

2015-06-04 Thread Sarah Goslee
The dangers of HTML: > should be > a greater than symbol. grecent <- subset(gtemp, subset = Year >= 1995,select = c(Year, Annual)) I've copied Gavin so he can decide whether to fix it. Sarah On Thursday, June 4, 2015, Jackson Rodrigues wrote: > Hi, > > > > I want to apply the codes of Gavin S

[R] Help to solve an Error

2015-06-04 Thread Jackson Rodrigues
Hi, I want to apply the codes of Gavin Simpson from http://www.fromthebottomoftheheap.net/2011/06/11/global-warming-since-1995-now-significant/ on my own data to detect trends in a subset. However, when I run: > grecent <- subset(gtemp, subset = Year >= 1995,select = c(Year, Annual)) I get err