Re: [R] Basic question -loading data

2012-08-15 Thread John
On Wed, 15 Aug 2012 17:59:53 +1000 Dinuk Jayasuriya wrote: > Hi Jeff, > > Thank you - your comment was much appreciated. > > I'm now running an ordered probit regression and get the following > error: > > Error in family$linkfun(mustart) : Value 1.125 out of range (0, 1) > > I can't decipher

Re: [R] Basic question -loading data

2012-08-15 Thread R. Michael Weylandt
On Wed, Aug 15, 2012 at 3:59 AM, Dinuk Jayasuriya wrote: > Hi Jeff, > > Thank you - your comment was much appreciated. > > I'm now running an ordered probit regression and get the following error: > > Error in family$linkfun(mustart) : Value 1.125 out of range (0, 1) Error message suggests you ar

Re: [R] Basic question -loading data

2012-08-15 Thread Dinuk Jayasuriya
Hi Jeff, Thank you - your comment was much appreciated. I'm now running an ordered probit regression and get the following error: Error in family$linkfun(mustart) : Value 1.125 out of range (0, 1) I can't decipher (after looking at other posts on google!) why this error occurs - is it somethin

Re: [R] Basic question -loading data

2012-08-15 Thread Jeff Newmiller
"data" is the name of a base function in R. Functions are objects of type "closure". You can find out more about this function by reading the help. If you create your own object named "data" then your object will "hide" the base function and you won't be able to use it when you want to. Type ?d

[R] Basic question -loading data

2012-08-15 Thread Dinuk Jayasuriya
Hi all, New user here - I include the following command in the prompt read.csv("document.csv", header = TRUE ) and the output shows up. But when I include the following command summary(data) I get the following message "Error in object[[i]] : object of type 'closure' is not subsettable" C