I'm beginner working on python machine learning using google colab . i face issue i can't apply linear regression on excel file
price is output or Y
other fields on excel is input
so
How to clean data ?
after that How to apply linear regressin for this excel file
what i try
import pandas as pd
df=pd.read_excel('Data_Train.xlsx')
file attached with post
/forums/uploadfile/e2e758/01302024213902PM/Data_Train.zip
/forums/uploadfile/e2e758/01302024213902PM/Data_Train.xlsx
Amira BedhiafiPosted Jan 31, 2024, 11:16 AM
Try the following :
Tuhin PaulPosted Feb 2, 2024, 3:18 PM
To apply linear regression on an Excel file using Python in Google Colab, check below:
Rohit GuptaPosted Jan 31, 2024, 2:32 AM
Hi
Please refer to https://www.c-sharpcorner.com/article/linear-regression2/
Thanks