Re: [R] Boxplot function error-help required

2015-06-13 Thread Kris Singh
From: macque...@llnl.gov > > Sent: Thu, 11 Jun 2015 21:44:39 + > > To: kris.si...@research.uwa.edu.au, r-help@r-project.org > > Subject: Re: [R] Boxplot function error-help required > > > > In addition to the other answers, I would suggest that t

Re: [R] Boxplot function error-help required

2015-06-11 Thread John Kane
Message- > From: macque...@llnl.gov > Sent: Thu, 11 Jun 2015 21:44:39 + > To: kris.si...@research.uwa.edu.au, r-help@r-project.org > Subject: Re: [R] Boxplot function error-help required > > In addition to the other answers, I would suggest that the next time you > get

Re: [R] Boxplot function error-help required

2015-06-11 Thread David Winsemius
On Jun 11, 2015, at 2:44 PM, MacQueen, Don wrote: > In addition to the other answers, I would suggest that the next time you > get the "could not find function" message, try like this: > > help.search('Boxplot') Spencer Graves uses RSiteSearch() as the underlying function for sos::findFn --

Re: [R] Boxplot function error-help required

2015-06-11 Thread David Winsemius
On Jun 11, 2015, at 2:19 PM, John Kane wrote: > Well it might have worked for your supervisor but I don't see how. > > As was mentioned it is boxplot , not Boxplot and the rest of the syntax looks > dodgy to say the least. There is a "Boxplot" function in package 'car' and it has a labels ar

Re: [R] Boxplot function error-help required

2015-06-11 Thread MacQueen, Don
In addition to the other answers, I would suggest that the next time you get the "could not find function" message, try like this: help.search('Boxplot') Among the output from that you should see graphics::boxplot Box Plots which should lead you to "boxplot" instead o

Re: [R] Boxplot function error-help required

2015-06-11 Thread John Kane
Well it might have worked for your supervisor but I don't see how. As was mentioned it is boxplot , not Boxplot and the rest of the syntax looks dodgy to say the least. Try boxplot(Acc_S$Subj ~ Acc_S$Acc) I don't see how label = will work , ?boxplot says it should be names = and as the code

Re: [R] Boxplot function error-help required

2015-06-11 Thread Richard M. Heiberger
R is case sensitive. try "boxplot" not "Boxplot" On Thu, Jun 11, 2015 at 7:20 AM, Kris Singh wrote: > Dear Sirm/Madam, > > Just wondering if someone could help me. I've tried running a code on R > and the code includes the following: > >> Boxplot(~Acc_S$Acc, label=Acc_S$Subj) > > But I receive