Re: [R] Error: object 'short' not found

2012-02-22 Thread kmittapalli
This finally worked- grid.draw( my.sgpd[["Goodness_of_Fit"]][["READ.2006"]][[i]] ) dev.off() On 2/21/2012 2:04 PM, David Winsemius [via R] wrote: > > On Feb 21, 2012, at 10:39 AM, kmittapalli wrote: > > > should i keep the first line of the code like- > > pdf(file="Biology_2012_GOF. > > pdf

Re: [R] Error: object 'short' not found

2012-02-21 Thread David Winsemius
On Feb 21, 2012, at 10:39 AM, kmittapalli wrote: should i keep the first line of the code like- pdf(file="Biology_2012_GOF. pdf", width=8.5, height=4.5) str( my.sgpd$Goodness_of_Fit$ Biology_2012$Q1_Q2) Or should I just have your code? str( my.sgpd$Goodness_of_Fit$ Biology_2012$Q1_Q2) You ar

Re: [R] Error: object 'short' not found

2012-02-21 Thread kmittapalli
should i keep the first line of the code like- pdf(file="Biology_2012_GOF. pdf", width=8.5, height=4.5) str( my.sgpd$Goodness_of_Fit$ Biology_2012$Q1_Q2) Or should I just have your code? str( my.sgpd$Goodness_of_Fit$ Biology_2012$Q1_Q2) thanks again. On Tue, Feb 21, 2012 at 10:32 AM, David W

Re: [R] Error: object 'short' not found

2012-02-21 Thread David Winsemius
On Feb 21, 2012, at 9:21 AM, kmittapalli wrote: HI, I am trying to run this code pdf(file="Biology_2012_GOF.pdf", width=8.5, height=4.5) grid.draw(my.sgpd$Goodness_of_Fit$Biology_2012$Q1_Q2) dev.off() I get an error mesage "object not found"- can someone please help? What does this return

Re: [R] Error: object 'short' not found

2012-02-21 Thread kmittapalli
HI, I am trying to run this code pdf(file="Biology_2012_GOF.pdf", width=8.5, height=4.5) grid.draw(my.sgpd$Goodness_of_Fit$Biology_2012$Q1_Q2) dev.off() I get an error mesage "object not found"- can someone please help? Kavita -- View this message in context: http://r.789695.n4.nabble.com

Re: [R] Error: object 'short' not found

2010-10-19 Thread Ivan Calandra
Hi, R tells you that you don't have any object called "short" in your workspace. From your question, I would guess that you don't plan to have it. What do you want the output of paste(...) to look like? Which parts are supposed to be called through objects (that contain characters), which o

Re: [R] Error: object 'short' not found

2010-10-19 Thread Ista Zahn
Hi Viki, On Tue, Oct 19, 2010 at 10:03 AM, Viki S wrote: > > Hi guys, > Can anyone tell me what is the meaning of following command ? > > paste(execDir,paste(short,"myfile",sep="_"),sep="\") The command means paste together the values in the variable execDir with the pasted-together values in sh

Re: [R] Error: object 'short' not found

2010-10-19 Thread David Winsemius
On Oct 19, 2010, at 10:03 AM, Viki S wrote: Hi guys, Can anyone tell me what is the meaning of following command ? paste(execDir,paste(short,"myfile",sep="_"),sep="\") R gives me an error : Error: object 'short' not found I tried to find help about 'short' in R, but could not find any such

[R] Error: object 'short' not found

2010-10-19 Thread Viki S
Hi guys, Can anyone tell me what is the meaning of following command ? paste(execDir,paste(short,"myfile",sep="_"),sep="\") R gives me an error : Error: object 'short' not found I tried to find help about 'short' in R, but could not find any such function/ object. Viki