Same as make_table, but print a table with LaTeX syntax
(self, *args, **kargs)
| 259 | return make_lined_table(self.res, *args, **kargs) |
| 260 | |
| 261 | def make_tex_table(self, *args, **kargs): |
| 262 | # type: (Any, Any) -> Optional[str] |
| 263 | """Same as make_table, but print a table with LaTeX syntax""" |
| 264 | return make_tex_table(self.res, *args, **kargs) |
| 265 | |
| 266 | def plot(self, |
| 267 | f, # type: Callable[..., Any] |
nothing calls this directly
no test coverage detected