Prostate | R Documentation |
This dataset originates from a study examining the correlation between prostate-specific antigen levels and various clinical measures in men scheduled for radical prostatectomy. It contains 97 rows and 9 variables.
A data frame with 97 observations and 9 variables:
Log of cancer volume
Log of prostate weight
Age of the patient
Log of benign prostatic hyperplasia amount
Seminal vesicle invasion (binary)
Log of capsular penetration
Gleason score
Percentage of Gleason scores 4 or 5
Log of prostate-specific antigen
Stamey, T.A., et al. (1989). Prostate specific antigen in the diagnosis and treatment of adenocarcinoma of the prostate: II. radical prostatectomy treated patients. Journal of Urology, 141(5), 1076-1083.
Stamey, T.A., Kabalin, J.N., McNeal, J.E., Johnstone, I.M., Freiha, F., Redwine, E.A., and Yang, N. (1989). Journal of Urology, 141(5), 1076-1083.
data(Prostate)
summary(Prostate)
cor(Prostate$lpsa, Prostate$lcavol)
## Not run:
fit <- islasso(lpsa ~ ., data = Prostate, family = gaussian())
summary(fit, pval = 0.05)
lambda.aic <- aic.islasso(fit, method = "AIC")
fit.aic <- update(fit, lambda = lambda.aic)
summary(fit.aic, pval = 0.05)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.