These projects were completed in contribution towards earning the Python for Data Science certificate from SoloLearn.
From SoloLearn:
The given code includes a list of heights for various basketball players. You need to calculate and output how many players are in the range of one standard deviation from the mean. Output the result using the print statement.
From SoloLearn:
You are given an array that represents house prices. Calculate and output the percentage of houses that are within one standard deviation from the mean. To calculate the percentage, divide the number of houses that satisfy the condition by the total number of houses, and multiply the result by 100.
From SoloLearn:
You are working with the COVID dataset for California, which includes the number of cases and deaths for each day of 2020. Find the day when the deaths/cases ratio was largest.
To do this, you need to first calculate the deaths/cases ratio and add it as a column to the DataFrame with the name 'ratio', then find the row that corresponds to the >largest value.
Important: The output should be a DataFrame, containing all of the columns of the dataset for the corresponding row.