mirror of
https://github.com/andre-wojtowicz/uci-ml-to-r.git
synced 2024-11-29 16:30:27 +01:00
20 lines
791 B
R
20 lines
791 B
R
preprocessDataset = function()
|
|
{
|
|
csv.file = "breast-cancer-wisconsin.data"
|
|
|
|
dataset = read.csv(paste0(orig.dir, "/", csv.file), header=FALSE)
|
|
|
|
colnames(dataset) = c("Sample code number", "Clump Thickness",
|
|
"Uniformity of Cell Size", "Uniformity of Cell Shape",
|
|
"Marginal Adhesion", "Single Epithelial Cell Size",
|
|
"Bare Nuclei", "Bland Chromatin", "Normal Nucleoli",
|
|
"Mitoses", "Class")
|
|
|
|
dataset = dataset %>% select(-`Sample code number`) %>%
|
|
filter(`Bare Nuclei` != "?") %>%
|
|
mutate(Class=factor(Class),
|
|
`Bare Nuclei`=as.integer(`Bare Nuclei`)) %>%
|
|
droplevels()
|
|
|
|
return(dataset)
|
|
} |