Logistic - Regression - Ipynb - Colaboratory
Logistic - Regression - Ipynb - Colaboratory
ipynb - Colaboratory
Logistic Regression
import numpy as np
import matplotlib.pyplot as plt
import pandas as pd
dataset = pd.read_csv('Social_Network_Ads.csv')
X = dataset.iloc[:, [2, 3]].values
y = dataset.iloc[:, -1].values
Splitting the dataset into the Training set and Test set
Feature Scaling
y_pred = classifier.predict(X_test)
[[65 3]
[ 8 24]]
https://colab.research.google.com/drive/1zY-ePZ9uDxOUjBsIdK2ZxQh60dOvljN0#scrollTo=kW3c7UYih0hT 1/3
5/11/23, 7:12 AM logistic_regression.ipynb - Colaboratory
from matplotlib.colors import ListedColormap
X_set, y_set = X_train, y_train
X1, X2 = np.meshgrid(np.arange(start = X_set[:, 0].min() - 1, stop = X_set[:, 0].max() + 1, step = 0.01),
np.arange(start = X_set[:, 1].min() - 1, stop = X_set[:, 1].max() + 1, step = 0.01))
plt.contourf(X1, X2, classifier.predict(np.array([X1.ravel(), X2.ravel()]).T).reshape(X1.shape),
alpha = 0.75, cmap = ListedColormap(('red', 'green')))
plt.xlim(X1.min(), X1.max())
plt.ylim(X2.min(), X2.max())
for i, j in enumerate(np.unique(y_set)):
plt.scatter(X_set[y_set == j, 0], X_set[y_set == j, 1],
c = ListedColormap(('red', 'green'))(i), label = j)
plt.title('Logistic Regression (Training set)')
plt.xlabel('Age')
plt.ylabel('Estimated Salary')
plt.legend()
plt.show()
'c' argument looks like a single numeric RGB or RGBA sequence, which should be avoided as value-mapping
'c' argument looks like a single numeric RGB or RGBA sequence, which should be avoided as value-mapping
'c' argument looks like a single numeric RGB or RGBA sequence, which should be avoided as value-mapping
'c' argument looks like a single numeric RGB or RGBA sequence, which should be avoided as value-mapping
https://colab.research.google.com/drive/1zY-ePZ9uDxOUjBsIdK2ZxQh60dOvljN0#scrollTo=kW3c7UYih0hT 2/3
5/11/23, 7:12 AM logistic_regression.ipynb - Colaboratory
https://colab.research.google.com/drive/1zY-ePZ9uDxOUjBsIdK2ZxQh60dOvljN0#scrollTo=kW3c7UYih0hT 3/3