Panda Python - Calculating what percentage of values are true and false out of total in boolean column code example
Example: Panda Python - Calculating what percentage of values are true and false out of total in boolean column
df['yourcolumns'].value_counts(normalize=True).mul(100).astype(str)+'%'