| wpbc | R Documentation |
Each record represents follow-up data for one breast cancer case. These are consecutive patients seen by Dr. Wolberg since 1984, and include only those cases exhibiting invasive breast cancer and no evidence of distant metastases at the time of diagnosis.
data("wpbc")
A data frame with 198 observations on the following 34 variables.
statusa factor with levels N (nonrecur) and
R (recur)
timerecurrence time (for status == "R") or
disease-free time (for status == "N").
mean_radiusradius (mean of distances from center to points on the perimeter) (mean).
mean_texturetexture (standard deviation of gray-scale values) (mean).
mean_perimeterperimeter (mean).
mean_areaarea (mean).
mean_smoothnesssmoothness (local variation in radius lengths) (mean).
mean_compactnesscompactness (mean).
mean_concavityconcavity (severity of concave portions of the contour) (mean).
mean_concavepointsconcave points (number of concave portions of the contour) (mean).
mean_symmetrysymmetry (mean).
mean_fractaldimfractal dimension (mean).
SE_radiusradius (mean of distances from center to points on the perimeter) (SE).
SE_texturetexture (standard deviation of gray-scale values) (SE).
SE_perimeterperimeter (SE).
SE_areaarea (SE).
SE_smoothnesssmoothness (local variation in radius lengths) (SE).
SE_compactnesscompactness (SE).
SE_concavityconcavity (severity of concave portions of the contour) (SE).
SE_concavepointsconcave points (number of concave portions of the contour) (SE).
SE_symmetrysymmetry (SE).
SE_fractaldimfractal dimension (SE).
worst_radiusradius (mean of distances from center to points on the perimeter) (worst).
worst_texturetexture (standard deviation of gray-scale values) (worst).
worst_perimeterperimeter (worst).
worst_areaarea (worst).
worst_smoothnesssmoothness (local variation in radius lengths) (worst).
worst_compactnesscompactness (worst).
worst_concavityconcavity (severity of concave portions of the contour) (worst).
worst_concavepointsconcave points (number of concave portions of the contour) (worst).
worst_symmetrysymmetry (worst).
worst_fractaldimfractal dimension (worst).
tsizediameter of the excised tumor in centimeters.
pnodesnumber of positive axillary lymph nodes observed at time of surgery.
The first 30 features are computed from a digitized image of a fine needle aspirate (FNA) of a breast mass. They describe characteristics of the cell nuclei present in the image.
There are two possible learning problems: predicting status or predicting
the time to recur.
1) Predicting field 2, outcome: R = recurrent, N = non-recurrent - Dataset should first be filtered to reflect a particular endpoint; e.g., recurrences before 24 months = positive, non-recurrence beyond 24 months = negative. - 86.3 previous version of this data.
2) Predicting Time To Recur (field 3 in recurrent records) - Estimated mean error 13.9 months using Recurrence Surface Approximation.
The data are originally available from the UCI machine learning repository.
W. Nick Street, Olvi L. Mangasarian and William H. Wolberg (1995). An inductive learning approach to prognostic prediction. In A. Prieditis and S. Russell, editors, Proceedings of the Twelfth International Conference on Machine Learning, pages 522–530, San Francisco, Morgan Kaufmann.
Peter Buehlmann and Torsten Hothorn (2007), Boosting algorithms: regularization, prediction and model fitting. Statistical Science, 22(4), 477–505.
data("wpbc", package = "TH.data")
### fit logistic regression model
coef(glm(status ~ ., data = wpbc[,colnames(wpbc) != "time"],
family = binomial()))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.