This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
def describe_population(df: pd.DataFrame) -> pd.DataFrame: | |
""" | |
Report the populated and uniqueness counts for each column of the input. | |
""" | |
N = len(df) | |
dtypes = df.dtypes |