Re: [R] "model = F" causing error in polr()

2006-08-15 Thread Rolf Turner

Try ``model = FALSE'' rather than ``model = F'' and see if it makes a
difference.  You make have an unwanted variable named ``F'' lurking
somewhere.

(In general it is a *bad* idea to use ``F'' when ``FALSE'' is
intended.)

cheers,

Rolf Turner
[EMAIL PROTECTED]

===+===+===+===+===+===+===+===+===+===+===+===+===+===+===+===+===+===+===
Original message:

> Hi all,
> 
> I got an error message if I set model =F in polr(), like
> 
> > polr(y ~ x1 + x2, data1, model = F, method = "probit")
> 
> Error in model.frame(formula, rownames, variables, varnames, extras,
> extranames,  :
> variable lengths differ (found for '(model)')
> but
> 
> > polr(y ~ x1 + x2, data1, method = "probit")
> 
> would work.
> 
> Why? Thank you,
> 
> Tian

__
R-help@stat.math.ethz.ch 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] "model = F" causing error in polr()

2006-08-15 Thread T Mu
Hi all,

I got an error message if I set model =F in polr(), like

> polr(y ~ x1 + x2, data1, model = F, method = "probit")

Error in model.frame(formula, rownames, variables, varnames, extras,
extranames,  :
variable lengths differ (found for '(model)')
but

> polr(y ~ x1 + x2, data1, method = "probit")

would work.

Why? Thank you,

Tian

[[alternative HTML version deleted]]

__
R-help@stat.math.ethz.ch 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.