Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Using Python (Jupyter notebook) , create a function that calculates the empirical cumulative data function of an array. Use the function to calculate the ECDFs

Using Python (Jupyter notebook), create a function that calculates the empirical cumulative data function of an array. Use the function to calculate the ECDFs of the three species of Iris (you will need the three following datasets: setosa_sepal_length.csv, versicolor_sepal_length.csv, and virginica_sepal_length.csv). Plot the ECDFs on a single axis.

can someone help me with this? the plot i got wasn't even an ECDF, they were just random dots on a graph. (the picture below is how each data set looks like, you can make a similar data set that looks like it) thank you so much! will upvote

image text in transcribed

setosa = pd.read_csv('setosa_sepal_length.csv') virginica = pd.read_csv('virginica_sepal_length.csv') versicolor = pd.read_csv('versicolor_sepal_length.csv') print(setosa.head() print(virginica.head() print(versicolor.head() 5.1 0 4.9 1 4.7 2 4.6 3 5.0 4 5.4 6.3 0 5.8 1 7.1 2 6.3 3 6.5 4 7.6 7 0 6.4 1 6.9 2 5.5 3 6.5 4 5.7

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

SQL Instant Reference

Authors: Gruber, Martin Gruber

2nd Edition

0782125395, 9780782125399

More Books

Students also viewed these Databases questions