Regression on Python (part 1)
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
Here are the data used:
path = 'https://s3-api.us-geo.objectstorage.softlayer.net/cf-courses-data/CognitiveClass/DA0101EN/automobileEDA.csv'
df = pd.read_csv(path)
df.head()
SIM...
massyfigini.hashnode.dev3 min read