Question: Finish the method below to extract different information about specific attribute and makes sure at the end to return a dataframe that contains your findings.
Finish the method below to extract different information about specific attribute and makes sure at the end to return a dataframe that contains your findings. When finding mininum, maximum, 1st, 2nd and 3rd quartile (1Q,2Q,3Q) and standard deviation do not include the missing values. Finish the method below:
def info(column_name:str, data:DataFrame) -> DataFrame:
info_about_columns = ['ColumnName', 'Unique values', 'Minimum', '1Q','2Q','3Q', 'Maximum','Standard deviation', 'Missing values' , 'Non-missing values']
Please use Python 3 in jupyter notebook.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
