(self, inplace)
| 111 | self.df_bool = DataFrame(np.random.randint(0, 2, size=(K, 10), dtype=bool)) |
| 112 | |
| 113 | def time_frame_drop_dups(self, inplace): |
| 114 | self.df.drop_duplicates(["key1", "key2"], inplace=inplace) |
| 115 | |
| 116 | def time_frame_drop_dups_na(self, inplace): |
| 117 | self.df_nan.drop_duplicates(["key1", "key2"], inplace=inplace) |
nothing calls this directly
no test coverage detected