-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTitanicLogisticRegression.py
67 lines (48 loc) · 1.98 KB
/
TitanicLogisticRegression.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
import codecademylib3_seaborn
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
from sklearn.linear_model import LogisticRegression
from sklearn.model_selection import train_test_split
from sklearn.preprocessing import StandardScaler
# Load the passenger data
passengers = pd.read_csv('passengers.csv')
# Update sex column to numerical
passengers['Sex'] = passengers['Sex'].map({'male': 0, 'female': 1})
# Fill the nan values in the age column
passengers['Age'].fillna(inplace=True, value=passengers['Age'].mean())
# Create a first class column
passengers['FirstClass'] = passengers['Pclass'].apply(lambda x: 1 if x == 1 else 0)
# Create a second class column
passengers['SecondClass'] = passengers['Pclass'].apply(lambda x: 1 if x == 2 else 0)
# print(passengers)
# Select the desired features
features = passengers[['Sex', 'Age', 'FirstClass', 'SecondClass']]
survival = passengers['Survived']
# Perform train, test, split
train_features, test_features, train_labels, test_labels = train_test_split(features, survival)
# Scale the feature data so it has mean = 0 and standard deviation = 1
scaler = StandardScaler()
train_features = scaler.fit_transform(train_features)
test_features = scaler.transform(test_features)
# Create and train the model
model = LogisticRegression()
model = model.fit(train_features, train_labels)
# Score the model on the train data
# print(model.score(train_features, train_labels))
# Score the model on the test data
# print(model.score(test_features, test_labels))
# Analyze the coefficients
# print(model.coef_)
#sex is the most important feature to survival
# Sample passenger features
Jack = np.array([0.0,20.0,0.0,0.0])
Rose = np.array([1.0,17.0,1.0,0.0])
You = np.array([1.0,23.0,0.0,0.1])
# Combine passenger arrays
sample_passengers = np.array([Jack, Rose, You])
# Scale the sample passenger features
sample_passengers = scaler.transform(sample_passengers)
# print(sample_passengers)
# Make survival predictions!
print(model.predict(sample_passengers))