Displaying 3 results from an estimated 3 matches for "mielityinen".
2005 Mar 24
1
Robust multivariate regression with rlm
...2,byrow=TRUE)+1
> model<-rlm(My~Mx)
> model
Call:
rlm(formula = My ~ Mx)
Converged in 0 iterations
Coefficients:
[,1] [,2]
(Intercept) 1 -1
Mx1 1 1
Mx2 -1 1
Degrees of freedom: 6 total; 0 residual
Scale estimate: 0
Best regards,
Markku Mielityinen
2005 Aug 17
2
About R variable references
...documentation I was able to
find but found no answers.
My system is FC3 with R version >= 2.
There are two snippets of code that hopefully make clear what I am
trying to achieve. The code is provided for illustration purposes only
and I did not try to compile it.
Best regards,
Markku Mielityinen
# C CODE
#####################################################################
SEXP myrho = R_GlobalEnv;
SEXP myvariable = R_NilValue;
SEXP myfunction = R_NilValue;
SEXP myinit(SEXP var, SEXP func) {
myvariable = var;
myfunction = func;
return R_NilValue;
}
SEXP myexec(/* probably has some...
2005 Apr 02
2
Building new graphic device drivers with g++
...E;
dev->canClip = TRUE;
dev->canHAdj = 2;
dev->canChangeGamma = FALSE;
dev->displayListOn = TRUE;
dev->newDevStruct = 1;
return TRUE;
}
}
========================================================================
======================
Best regards,
Markku Mielityinen