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
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
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
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 <-