-
Notifications
You must be signed in to change notification settings - Fork 0
/
Machine Learning with R_1.Rpres
32 lines (22 loc) · 1.13 KB
/
Machine Learning with R_1.Rpres
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
Machine Learning with R_1
========================================================
author: Parash Upreti
date:
autosize: true
Machine learning Classification Problems
========================================================
- This presentation covers the ways to create a machine learnining algorithm to classify cancerous cells. We will use differnt techniques and measure the accuracy of the prediction using each models.
- The dataset comes from UCI Machine Learning Recipotary. You can read about the dataset in the website. http://archive.ics.uci.edu/ml/datasets/Breast+Cancer+Wisconsin+%28Diagnostic%29
- Please note that this data is already cleaned and ready for use. So a majority of work is already done. Now we will use this data and predict if our algorithms can correctly classify.
- We will use multiple supervised vs unsupervised methods for classification
- Lets get started
Importing and Looking at the dataset
========================================================
```{r}
summary(cars)
```
Slide With Plot
========================================================
```{r, echo=FALSE}
plot(cars)
```