-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbreast-cancer-prediction.R
More file actions
73 lines (47 loc) · 2.19 KB
/
Copy pathbreast-cancer-prediction.R
File metadata and controls
73 lines (47 loc) · 2.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
my_packages <- c("tidyverse", "xlsx", "skimr","ggplot2","caTools")
lapply(my_packages, require, character.only = TRUE)
#Data Loading and Pre-Processing
#Malignant -> 0
#Benign -> 1
breast_cancer_dataset <- readxl::read_excel("D:/breast-cancer-wisconsin dataset.xlsx")
breast_cancer_dataset <- data.frame(breast_cancer_dataset)
View(breast_cancer_dataset)
attach(breast_cancer_dataset) #-> Search path
breast_cancer_dataset[1]
dim(breast_cancer_dataset)
sum(is.na(breast_cancer_dataset)) #prints sum of null values
summary(is.na(breast_cancer_dataset)) #->changes
colnames(breast_cancer_dataset)[colSums(is.na(breast_cancer_dataset))>0] # prints all column names only with null values
#count total missing values in each column of data frame
as.data.frame(colSums(is.na(breast_cancer_dataset))) #-> clear output #->changes
sapply(breast_cancer_dataset,function(x) sum(is.na(x)))
#prints the datatype of all the columns with column name
sapply(breast_cancer_dataset,function(x) typeof(x))
#basic operation -> changing the type of some columns
breast_cancer_dataset$diagnosis <- as.integer(breast_cancer_dataset$diagnosis)
#stats
summary(breast_cancer_dataset)
breast_cancer_dataset %>% skim()
glimpse(breast_cancer_dataset)
#print the no.of benign and no.of malignant cases
table(diagnosis)
#finding mean of all the columns using group_by -> This helps us to identify the difference btw malignant cases and
# benign cases -> here we observe that the mean values of all the columns for malignant are greater than benign
# this helps us in the model differenciation
breast_cancer_dataset%>%group_by(diagnosis)%>%summarise_all("mean")
#Splitting train and test
Split_data <- sample.split(radius_mean,SplitRatio = 0.8)
train_data <- subset(breast_cancer_dataset , Split_data == TRUE)
test_data <- subset(breast_cancer_dataset ,Split_data == FALSE)
dim(train_data)
dim(test_data)
#LINEAR Regression
lm_mod1 <- lm(diagnosis~radius_mean,train_data)
lm_mod1
summary(lm_mod1)
plot(lm_mod1)
prediction <- predict(lm_mod,test_data)
prediction
test_data$prediction = prediction
View(test_data)
ggplot(test_data,aes(x = texture_mean)) +geom_point(aes(y = diagnosis),color = "red") +geom_point(aes(y = prediction),color = "blue")