A fitness center stores the number of calories burned during…

A fitness center stores the number of calories burned during several workout sessions in a list. Write a Python function named calculate_statistics(calories) that returns the following information as a dictionary: (5 Points) Minimum calories burned Maximum calories burned Mean calories burned Median calories burned You may use Python’s built-in statistics module where appropriate.

A data analyst is preparing a dataset for analysis. (4 Point…

A data analyst is preparing a dataset for analysis. (4 Points) import pandas as pdemployees = pd.read_csv(“employees.csv”)print(employees.describe()) Answer the following questions. What information does this code produce? Why is this step useful before building a machine learning model? Besides descriptive statistics, identify two additional aspects of the dataset that should be examined during exploratory data analysis. Name one Pandas function that could be used to identify missing values in the dataset.