Re: [Rd] type.convert (PR#13646)

2009-04-11 Thread Raberger, Stefan
Hi Peter, each of the four PCs actually has the same locale setting: > Sys.setlocale("LC_CTYPE") [1] "German_Austria.1252" (all the other settings returned by invoking Sys.getlocale() are identical as well). Just to be sure (because it's displayed incorrectly in my browser on the bugtracking

Re: [Rd] type.convert (PR#13646)

2009-04-11 Thread Raberger, Stefan
In the NA cases, storage.mode(..) - and also typeof(..) and class(..) - returns "logical", whereas in the other cases I get "integer" (and class "factor"). charToRaw(..) returns a7, as you suspected. -Ursprüngliche Nachricht- Von: Peter Dalgaard [mailto:p.dalga...@biostat.ku.dk] Gesend

[Rd] data argument and environments

2009-04-11 Thread roger koenker
I'm having difficulty with an environmental issue: I have an additive model fitting function with a typical call that looks like this: require(quantreg) n <- 100 x <- runif(n,0,10) y <- sin(x) + rnorm(n)/5 d <- data.frame(x,y) lam <- 2 f <- rqss(y ~ qss(x, lambda = lam), data = d) th

Re: [Rd] data argument and environments

2009-04-11 Thread Duncan Murdoch
On 11/04/2009 6:50 PM, roger koenker wrote: I'm having difficulty with an environmental issue: I have an additive model fitting function with a typical call that looks like this: require(quantreg) n <- 100 x <- runif(n,0,10) y <- sin(x) + rnorm(n)/5 d <- data.frame(x,y) lam <- 2 f <-