Skip to content

Commit 0b5b16e

Browse files
authored
Update Polynomial Regression.py
1 parent b9caf29 commit 0b5b16e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Polynomial Regression.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from sklearn.metrics import mean_absolute_error
99

1010
# Importing the dataset
11-
dataset = pd.read_csv('/content/sample_data/california_housing_test.csv')
11+
dataset = pd.read_csv('Enter the path to your dataset of choice')
1212
print(dataset)
1313
x=dataset['median_income']
1414
y=dataset['median_house_value']

0 commit comments

Comments
 (0)