All our Data Science projects include bite-sized activities to test your knowledge and practice in an environment with constant feedback.
All our activities include solutions with explanations on how they work and why we chose them.
In this task, you need to calculate the mean, median, and standard deviation of the salary_in_usd_series
. Once you have computed these statistics, you should store them in a new Series salary_details
. Make sure to set the index of this Series to Mean
, Median
, Standard Deviation
respectively.
In this task, you are required to calculate the 25th, 50th, and 75th percentiles of the salary_in_usd_series
. After computing these percentiles, store them in a new Series salary_quartiles
variable. Ensure that the index of this Series is set to 25th Percentile
, 50th Percentile
, 75th Percentile
as specified.
Store the resultant boolean series in a new Series called salary_compare_series
.