pandas crosstab function 28counting 29 frequencies

Solutions on MaxInterview for pandas crosstab function 28counting 29 frequencies by the best coders in the world

showing results for - "pandas crosstab function 28counting 29 frequencies"
Franco
13 Sep 2018
1>>> pd.crosstab(index=emp['gender'], columns=emp['race'],                 values=emp['salary'], aggfunc='mean').round(-3)
similar questions