(df, index, columns, values)
| 437 | |
| 438 | |
| 439 | def pivot_sum(df, index, columns, values): |
| 440 | return pd.pivot_table( |
| 441 | df, |
| 442 | index=index, |
| 443 | columns=columns, |
| 444 | values=values, |
| 445 | aggfunc="sum", |
| 446 | dropna=False, |
| 447 | observed=False, |
| 448 | ) |
| 449 | |
| 450 | |
| 451 | def pivot_count(df, index, columns, values): |
nothing calls this directly
no test coverage detected