diff --git a/Code/my/Data_age_salary.csv b/Code/my/Data_age_salary.csv new file mode 100644 index 0000000..1db00d4 --- /dev/null +++ b/Code/my/Data_age_salary.csv @@ -0,0 +1,11 @@ +Age,Salary +44,72000 +27,48000 +30,54000 +38,61000 +40,78000 +35,58000 +35,52000 +48,79000 +50,83000 +37,67000 diff --git a/Code/my/LinerTest.py b/Code/my/LinerTest.py new file mode 100644 index 0000000..cde52fb --- /dev/null +++ b/Code/my/LinerTest.py @@ -0,0 +1,6 @@ +import pandas as pd +import numpy as np +import matplotlib.pyplot as plt + +dataset = pd.read_csv('Data_age_salary.csv'); +dataset.iloc[:1] \ No newline at end of file