forked from justmarkham/DAT4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
06_iris_prework.py
67 lines (38 loc) · 1.58 KB
/
06_iris_prework.py
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
'''
EXERCISE: "Human Learning" with iris data
'''
from sklearn.datasets import load_iris
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
# load the famous iris data
iris = load_iris()
# what do you think these attributes represent?
iris.data
iris.data.shape
iris.feature_names
iris.target
iris.target_names
# intro to numpy
type(iris.data)
## PART 1: Read data into pandas and explore
# the feature_names are a bit messy, let's clean them up. remove the (cm)
# at the end and replace any spaces with an underscore
# create a list "features" that holds the cleaned column names
# read the iris data into pandas, with our refined column names
# create a list of species (should be 150 elements)
# using iris.target and iris.target_names
# resulting list should only have the words "setosa", "versicolor", and "virginica"
# add the species list as a new DataFrame column
# explore data numerically, looking for differences between species
# try grouping by species and check out the different predictors
# explore data by sorting, looking for differences between species
# I used values in order to see all of the data at once
# without .values, a dataframe is returned
# explore data visually, looking for differences between species
# try using a histogram or boxplot
## PART 2: Write a function to predict the species for each observation
# create a dictionary so we can reference columns by name
# define function that takes in a row of data and returns a predicted species
# make predictions and store as numpy array
# calculate the accuracy of the predictions