Learn practical skills, build real-world projects, and advance your career

Linear Regression Project

-Shreejaya Bharathan and Aakanksha Nallabothula Surya

import numpy as np
import matplotlib.pyplot as plt 

import pandas as pd
import statsmodels.api as sm
import statsmodels.formula.api as smf
import scipy.stats as stats
import matplotlib.cm as cm
from IPython.display import display
from mpl_toolkits.mplot3d import Axes3D
from sklearn.feature_selection import f_regression
from statsmodels.stats.anova import anova_lm
student_data = pd.read_csv('./student-mat.csv')
student_data.head()