--- title: "Principal component analysis: breast tumours" output: rmarkdown::html_vignette vignette: > %\VignetteIndexEntry{Principal component analysis: breast tumours} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- How many factorial axes a dataset really needs, how to read them, and what a supplementary variable is for. The other vignettes are listed by `vignette (package = "fdm2id")`; they use the same handful of functions on other data, and can be read in any order. ``` r library (fdm2id) ``` # The data A database on breast cancer, built in 1992 by Dr W. H. Wolberg at the University of Wisconsin. Of the 699 patients, 458 carried a benign tumour and 241 a malignant one. Each tumour is described by nine criteria (size, shape of the cells, and so on), each graded from 1 to 10. Sixteen records have a missing value, all of them on `Bare.nuclei`. Rather than dropping those patients, the value is predicted from the eight other criteria and rounded back to the 1--10 scale -- a regression used as an imputation, which is the first thing the package's `LINREG` is good for here. ``` r library (mlbench) data (BreastCancer) BreastCancer = BreastCancer [, -1] BreastCancer [, -10] = lapply (BreastCancer [, -10], function (x) as.numeric (as.character (x))) names (which (colSums (is.na (BreastCancer)) > 0)) #> [1] "Bare.nuclei" train = BreastCancer [!is.na (BreastCancer$Bare.nuclei), ] BreastCancer [is.na (BreastCancer$Bare.nuclei), 6] = round (predict (LINREG (train [, -c (6, 10)], train [, 6]), BreastCancer [is.na (BreastCancer$Bare.nuclei), -6])) summary (BreastCancer) #> Cl.thickness Cell.size Cell.shape Marg.adhesion #> Min. : 1.000 Min. : 1.000 Min. : 1.000 Min. : 1.000 #> 1st Qu.: 2.000 1st Qu.: 1.000 1st Qu.: 1.000 1st Qu.: 1.000 #> Median : 4.000 Median : 1.000 Median : 1.000 Median : 1.000 #> Mean : 4.418 Mean : 3.134 Mean : 3.207 Mean : 2.807 #> 3rd Qu.: 6.000 3rd Qu.: 5.000 3rd Qu.: 5.000 3rd Qu.: 4.000 #> Max. :10.000 Max. :10.000 Max. :10.000 Max. :10.000 #> Epith.c.size Bare.nuclei Bl.cromatin Normal.nucleoli #> Min. : 1.000 Min. : 1.000 Min. : 1.000 Min. : 1.000 #> 1st Qu.: 2.000 1st Qu.: 1.000 1st Qu.: 2.000 1st Qu.: 1.000 #> Median : 2.000 Median : 1.000 Median : 3.000 Median : 1.000 #> Mean : 3.216 Mean : 3.528 Mean : 3.438 Mean : 2.867 #> 3rd Qu.: 4.000 3rd Qu.: 6.000 3rd Qu.: 5.000 3rd Qu.: 4.000 #> Max. :10.000 Max. :10.000 Max. :10.000 Max. :10.000 #> Mitoses Class #> Min. : 1.000 benign :458 #> 1st Qu.: 1.000 malignant:241 #> Median : 1.000 #> Mean : 1.589 #> 3rd Qu.: 1.000 #> Max. :10.000 ``` ``` r plotdata (BreastCancer) ```
plot of chunk unnamed-chunk-4
plot of chunk unnamed-chunk-6
plot of chunk unnamed-chunk-7
plot of chunk unnamed-chunk-9