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, 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 are misinterpreting my advice. You got an error message about a
 missing object. I was trying figure out whether the object was even
 there. What happens when you copy-and-paste  this into your console
 command line?:

   str( my.sgpd$Goodness_of_Fit$Biology_2012$Q1_Q2)

 I'm trying to figure out  (and show you how to do this next time) why
 R thinks that the item which should be a grob-class value is even
 there and if it is there, whether it is of the right class to be
 sending to grid.draw().

 -- 
 David.

 
  thanks again.
 
 
 
 
 
  On Tue, Feb 21, 2012 at 10:32 AM, David Winsemius [via R] 
  [hidden email] /user/SendEmail.jtp?type=nodenode=4407950i=0 wrote:
 
 
  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:
 
  str( my.sgpd$Goodness_of_Fit$Biology_2012$Q1_Q2)  # ???
 
  --
 
  David Winsemius, MD
  West Hartford, CT
 
  __
  [hidden email] http://user/SendEmail.jtp?
  type=nodenode=4407351i=0mailing 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.
 
 
  --
  If you reply to this email, your message will be added to the
  discussion
  below:
 
 
  
  .
  
 NAMLhttp://r.789695.n4.nabble.com/template/NamlServlet.jtp?macro=macro_viewerid=instant_html%21nabble%3Aemail.namlbase=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespacebreadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml
  
 http://r.789695.n4.nabble.com/template/NamlServlet.jtp?macro=macro_viewerid=instant_html%21nabble%3Aemail.namlbase=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespacebreadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml
  

  
 
 
 
 
  --
  Kavita Mittapalli, Ph.D.
 
 
  --
  View this message in context: 
 http://r.789695.n4.nabble.com/Error-object-short-not-found-tp3002159p4407368.html
  Sent from the R help mailing list archive at Nabble.com.
  [[alternative HTML version deleted]]
 
  __
  [hidden email] /user/SendEmail.jtp?type=nodenode=4407950i=1 
 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.

 David Winsemius, MD
 West Hartford, CT

 __
 [hidden email] /user/SendEmail.jtp?type=nodenode=4407950i=2 
 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.


 
 If you reply to this email, your message will be added to the 
 discussion below:
 http://r.789695.n4.nabble.com/Error-object-short-not-found-tp3002159p4407950.html
  

 To unsubscribe from Error: object 'short' not found, click here 
 http://r.789695.n4.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_codenode=3002159code=a21pdHRhcGFsbGlAZ21haWwuY29tfDMwMDIxNTl8LTIwOTk3NDA2Nw==.
 NAML 
 http://r.789695.n4.nabble.com/template/NamlServlet.jtp?macro=macro_viewerid=instant_html%21nabble%3Aemail.namlbase=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespacebreadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml
  



--
View this message in context: 
http://r.789695.n4.nabble.com/Error-object-short-not-found-tp3002159p4409863.html
Sent from the R help mailing list archive at Nabble.com.
[[alternative HTML version deleted]]

__
R-help@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 

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/Error-object-short-not-found-tp3002159p4407151.html
Sent from the R help mailing list archive at Nabble.com.

__
R-help@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.


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:

str( my.sgpd$Goodness_of_Fit$Biology_2012$Q1_Q2)  # ???

--

David Winsemius, MD
West Hartford, CT

__
R-help@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.


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 Winsemius [via R] 
ml-node+s789695n4407351...@n4.nabble.com wrote:


 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:

 str( my.sgpd$Goodness_of_Fit$Biology_2012$Q1_Q2)  # ???

 --

 David Winsemius, MD
 West Hartford, CT

 __
 [hidden email] http://user/SendEmail.jtp?type=nodenode=4407351i=0mailing 
 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.


 --
  If you reply to this email, your message will be added to the discussion
 below:

 http://r.789695.n4.nabble.com/Error-object-short-not-found-tp3002159p4407351.html
  To unsubscribe from Error: object 'short' not found, click 
 herehttp://r.789695.n4.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_codenode=3002159code=a21pdHRhcGFsbGlAZ21haWwuY29tfDMwMDIxNTl8LTIwOTk3NDA2Nw==
 .
 NAMLhttp://r.789695.n4.nabble.com/template/NamlServlet.jtp?macro=macro_viewerid=instant_html%21nabble%3Aemail.namlbase=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespacebreadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml




-- 
Kavita Mittapalli, Ph.D.


--
View this message in context: 
http://r.789695.n4.nabble.com/Error-object-short-not-found-tp3002159p4407368.html
Sent from the R help mailing list archive at Nabble.com.
[[alternative HTML version deleted]]

__
R-help@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.


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 are misinterpreting my advice. You got an error message about a  
missing object. I was trying figure out whether the object was even  
there. What happens when you copy-and-paste  this into your console  
command line?:


 str( my.sgpd$Goodness_of_Fit$Biology_2012$Q1_Q2)

I'm trying to figure out  (and show you how to do this next time) why  
R thinks that the item which should be a grob-class value is even  
there and if it is there, whether it is of the right class to be  
sending to grid.draw().


--
David.



thanks again.





On Tue, Feb 21, 2012 at 10:32 AM, David Winsemius [via R] 
ml-node+s789695n4407351...@n4.nabble.com wrote:



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:

str( my.sgpd$Goodness_of_Fit$Biology_2012$Q1_Q2)  # ???

--

David Winsemius, MD
West Hartford, CT

__
[hidden email] http://user/SendEmail.jtp? 
type=nodenode=4407351i=0mailing 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.


--
If you reply to this email, your message will be added to the  
discussion

below:

http://r.789695.n4.nabble.com/Error-object-short-not-found-tp3002159p4407351.html
To unsubscribe from Error: object 'short' not found, click herehttp://r.789695.n4.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_codenode=3002159code=a21pdHRhcGFsbGlAZ21haWwuY29tfDMwMDIxNTl8LTIwOTk3NDA2Nw== 


.
NAMLhttp://r.789695.n4.nabble.com/template/NamlServlet.jtp?macro=macro_viewerid=instant_html%21nabble%3Aemail.namlbase=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.NodeNamespacebreadcrumbs=notify_subscribers%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml 







--
Kavita Mittapalli, Ph.D.


--
View this message in context: 
http://r.789695.n4.nabble.com/Error-object-short-not-found-tp3002159p4407368.html
Sent from the R help mailing list archive at Nabble.com.
[[alternative HTML version deleted]]

__
R-help@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.


David Winsemius, MD
West Hartford, CT

__
R-help@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.


[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
  
[[alternative HTML version deleted]]

__
R-help@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.


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  
function/ object.


You are the one who is asking R to find a value for an object named  
short.


paste(execDir,paste(short,myfile,sep=_),sep=\)
^

Since you are posting in HTML, it is also possible that your mail  
client is going to display this in a proportional font and the the  
^^^ will not be aligned with the word short. You should fix the  
settings of you mail client in both these areas.




Viki

[[alternative HTML version deleted]]



David Winsemius, MD
West Hartford, CT

__
R-help@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.


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 is...@live.com 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 short and myfile


 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.

because it does not exist, as the error message informed you. You need
to create it, or, if you want the literal string short, then you
need to put it in quotes.

-Ista


 Viki

        [[alternative HTML version deleted]]

 __
 R-help@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.




-- 
Ista Zahn
Graduate student
University of Rochester
Department of Clinical and Social Psychology
http://yourpsyche.org

__
R-help@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.


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 
ones directly as strings?


Ivan

Le 10/19/2010 16:03, Viki S a écrit :

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

[[alternative HTML version deleted]]

__
R-help@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.



--
Ivan CALANDRA
PhD Student
University of Hamburg
Biozentrum Grindel und Zoologisches Museum
Abt. Säugetiere
Martin-Luther-King-Platz 3
D-20146 Hamburg, GERMANY
+49(0)40 42838 6231
ivan.calan...@uni-hamburg.de

**
http://www.for771.uni-bonn.de
http://webapp5.rrz.uni-hamburg.de/mammals/eng/mitarbeiter.php

__
R-help@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.