DEV Community

Arindam Basu
Arindam Basu

Posted on

1 1

Importing from google colab

import pandas as pd
import matplotlib.pyplot as plt
Enter fullscreen mode Exit fullscreen mode
x = [1,2,3,4,5]
y = [4,5,6,7,8]
xydata = pd.DataFrame({"x": x,
                       "y" : y})
xydata.head()
Enter fullscreen mode Exit fullscreen mode
.dataframe tbody tr th:only-of-type {
    vertical-align: middle;
}

.dataframe tbody tr th {
    vertical-align: top;
}

.dataframe thead th {
    text-align: right;
}
Enter fullscreen mode Exit fullscreen mode
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")
Enter fullscreen mode Exit fullscreen mode
Text(0.5, 1.0, 'X and Y plotted')
Enter fullscreen mode Exit fullscreen mode

Alt Text

The Goal

Goal of this analysis is to develop a machine learning pathway for identification of the best classifying scheme.

Heroku

This site is built on Heroku

Join the ranks of developers at Salesforce, Airbase, DEV, and more who deploy their mission critical applications on Heroku. Sign up today and launch your first app!

Get Started

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay