Untitled
Anonymous
plain_text
02/05/2023 8:00 PM
284 B
18
Indexable
children_pivot = data.pivot_table(index = ['children'], \
values = 'debt', aggfunc='count')
children_pivot['rate'] = children_pivot[1] / children_pivot[0] * 100
children_pivotEditor is loading...