(dframe, A, B)
| 43 | def col_filter(dframe, cols): |
| 44 | return dframe[[*cols]] |
| 45 | def rename_col(dframe, A, B): |
| 46 | dframe.rename(columns={A:B}, inplace=True) |
| 47 | def astype(dframe, col, new_type): |
| 48 | if new_type == 'int': |
| 49 | dframe[col] = dframe[col].astype(int) |
nothing calls this directly
no outgoing calls
no test coverage detected