Skip to content

Error: object 'short' not found

5 messages · David Winsemius, 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.
#
On Feb 21, 2012, at 9:21 AM, kmittapalli wrote:

            
What does this return:

str( my.sgpd$Goodness_of_Fit$Biology_2012$Q1_Q2)  # ???
#
On Feb 21, 2012, at 10:39 AM, kmittapalli wrote:

            
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().