Read the csv file (iris.csv in Canvas) into Python as a pandas DataFrame. Note that the CSV file includes column headers.
1. How many data points are there in this data set?
2. What are the data types of the columns and what are the column names?
3. The column names correspond to flower species names, as well as four basic measurements one can make of a flower: the width and length of its petals and the width and length How many species of flower are included in the data?
4. Use a pandas aggregate operation to determine the mean, median, minimum, maximum and standard deviation of the petal and sepal ratio for each of the three species in the data set
5. Use the built-in pandas plotting tools to make a box-and-whisker plot showing the distribution of petal ratio and sepal ratio for each of the three species. Please include labels on your x- and y-axes and give an appropriate title to your plot.
6. Make a scatter matrix plot for the four original features (petal width, petal length, sepal width and sepal length). Each point in the scatter plot should be colored according to its species.
7. What kind of correlation exists in these variables? Describe your result based on the value of r and shape of the scatter plot.
8. Generate histograms for the ‘sepal.length’ column. What can you interpret from the generated histogram?
9. Show the range of values (low and high) which covers the 95% and 99.7% of the area of data points of sepal.length’ column.
10. Find the mean and standard deviation of sepal.length and sepal.width for each flower type
CS 340 Milestone One Guidelines and Rubric Overview: For this assignment, you will implement the fundamental operations of create, read, update,
Retail Transaction Programming Project Project Requirements: Develop a program to emulate a purchase transaction at a retail store. This
7COM1028 Secure Systems Programming Referral Coursework: Secure
Create a GUI program that:Accepts the following from a user:Item NameItem QuantityItem PriceAllows the user to create a file to store the sales receip
CS 340 Final Project Guidelines and Rubric Overview The final project will encompass developing a web service using a software stack and impleme