Allows IPython render HTML tables :return: First 10 rows of data as an HTML table
(self)
| 1715 | print(formatted_seq) |
| 1716 | |
| 1717 | def _repr_html_(self): |
| 1718 | """ |
| 1719 | Allows IPython render HTML tables |
| 1720 | :return: First 10 rows of data as an HTML table |
| 1721 | """ |
| 1722 | return self.tabulate(10, tablefmt="html") |
| 1723 | |
| 1724 | def tabulate( |
| 1725 | self, |