You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5.9 KiB
5.9 KiB
None
<html>
<head>
</head>
</html>
Importing data¶
In [2]:
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)
dataset.head(10)
Out[2]:
This is the part of code you have to solve and deliver as a part of your report.
Statistical Summary¶
For this section you can create your own functions or also you can writte down the code as chunks to compute:
- Mean
- Number of elements per properti
- Standard deviation
Plots and data visualization¶
Make the next plots for data exploration and visulization:
- Box and Whiskers plot
- histogram plot
- scatter plot for sepal length and width
- scatter plot for petal length and width