ipy_table
ipy_table copied to clipboard
Richly formatted data tables in IPython
Hi I was wondering if there is a way to use your package to display several data frames side by side in a jupyter notebook cell. kind of being able...
Is it possible to make a cell or a row a hyperlink to another URL? I tried using IPython.display.HTML() but to no effect.
If my table starts with a header row, I can use `apply_theme('basic')` to highlight it. But if my table doesn't start with a header row, and I want to display...
I was surprised that a statement like ``` ipy_table.set_column_style(1, align='right') ``` would re-render a table I had worked with before. How does this work? There seems to be some sort...
From what I can see, ipy_table works best if it is the last row in a ipython notebook cell. If not, then there are some issues. I can only get...
make_table() fails if the data has any non-ascii characters.
I implemented __repr_latex_(). This will enable IPython nbconvert to convert ipy_table html table to LaTeX table.
I've added some lines to receive a dict also as input.
With this magic you can load the extension using ``` %install_ext https://raw.github.com/dawehner/ipy_table/master/ipy_table.py %load_ext ipy_table from ipy_table import * ``` which is pretty handy to be honest.