[go: up one dir, main page]

0% found this document useful (0 votes)
12 views1 page

01.linear Regression

Uploaded by

premkumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views1 page

01.linear Regression

Uploaded by

premkumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Assignment

Build the linear regression model using scikit learn in boston data to
predict 'Price' based on other dependent variable.

Here is the code to load the data:

import numpy as np
import pandas as pd
import scipy.stats as stats
import matplotlib.pyplot as plt
import sklearn
from sklearn.datasets import load_boston
boston = load_boston()
bos = pd.DataFrame(boston.data)

Task: Deploy this assignment in any cloud platform.(Try to look for free
cloud platform)

Assignment: Submit assignment’s deployable link only.

You might also like