import pandas as pd
import matplotlib.pyplot as plt
x = [1,2,3,4,5]
y = [4,5,6,7,8]
xydata = pd.DataFrame({"x": x,
"y" : y})
xydata.head()
.dataframe tbody tr th:only-of-type {
vertical-align: middle;
}
.dataframe tbody tr th {
vertical-align: top;
}
.dataframe thead th {
text-align: right;
}
x | y | |
---|---|---|
0 | 1 | 4 |
1 | 2 | 5 |
2 | 3 | 6 |
3 | 4 | 7 |
4 | 5 | 8 |
%matplotlib inline
plt.plot(x,y)
plt.scatter(x,y)
plt.title("X and Y plotted")
Text(0.5, 1.0, 'X and Y plotted')
The Goal
Goal of this analysis is to develop a machine learning pathway for identification of the best classifying scheme.
Top comments (0)