Re: [R] applying summary() to an object created with ols()

2009-08-22 Thread Mark Difford
Hi Benjamin, >> Does anyone know how I can set the *datadist()* and the *options()* such >> that I will get access to all coefficients? ## Do this before you fit your models, i.e. tell datadist &c what data set you are using. d <- datadist( subset(aa, Jahr>=1957 & Jahr<=1966) ) options( datadis

[R] applying summary() to an object created with ols()

2009-08-21 Thread Benjamin Volland
Hello R-list, I am trying to calculate a ridge regression using first the *lm.ridge()* function from the MASS package and then applying the obtained Hoerl Kennard Baldwin (HKB) estimator as a penalty scalar to the *ols()* function provided by Frank Harrell in his Design package. It looks like