Inspiration
Major League Hacking is my inspiration.
What it does
It used dataset in program.
How we built it
I built it using Python.
from pandas import read_csv
url = "https://raw.githubusercontent.com/jbrownlee/Datasets/master/iris.csv"
names = ['sepal-length', 'sepal-width', 'petal-length', 'petal-width', 'class']
dataset = read_csv(url, names=names)
print(dataset.shape)
print(dataset.head(20))
print(dataset.describe())
print(dataset.groupby('class').size())
Challenges we ran into
It was a fun challenge.
Accomplishments that we're proud of
I am proud of taking this challenge.
What we learned
I learned using dataset.
What's next for Build a project that uses a data set
To use more datasets in my program.
Built With
- datatset
- python
Log in or sign up for Devpost to join the conversation.