Homework 1#
Get data set “iris.data” at https://archive.ics.uci.edu/dataset/53/iris & read in the file. Report the name of each observable, its statistical type.
How many of each species exists?
Assuming the petal is a rectangle, calculate the area of each petal. Save this value to the same object.
Try this using both numpy and a pandas.
Calculate summary statistics (mean, median, and standard deviation) for values the continuous variables.
Plot “Sepal Length” vs “Sepal Width” with a different color per flower type. Use good data visualization practices.
Plot petal length vs assumed petal area, with a different color per flower type. Use good data visualization practices.