(self)
| 246 | |
| 247 | class ToHTML: |
| 248 | def setup(self): |
| 249 | nrows = 500 |
| 250 | self.df2 = DataFrame(np.random.randn(nrows, 10)) |
| 251 | self.df2[0] = period_range("2000", periods=nrows) |
| 252 | self.df2[1] = range(nrows) |
| 253 | |
| 254 | def time_to_html_mixed(self): |
| 255 | self.df2.to_html() |
nothing calls this directly
no test coverage detected