[1]: https://journals.plos.org/plosmedicine/article?id=10.1371/journal.pmed.1003730
conda install tabulate
pip install itables
DataFrame
objects from pandas have methods:.to_html()
.to_markdown()
.%run s ring_df.py #constructs a data frame dat
print(dat.to_html())
DataFrame
objects from pandas have methods:.to_html()
.to_markdown()
.#%run string_df.py
print(dat.to_markdown())
display()
and
HTML()
from IPython.from IPython.core.display import display, HTML
display(HTML('<h2> Hello <br> World!</h2>'))
display(HTML(dat.to_html(index=False)))
display()
and
Markdown()
from IPython.from IPython.core.display import display, Markdown
display(Markdown('## Hello <br> World!'))
display(Markdown(dat.to_markdown(index=False)))
from itables import show
show(dat)
variable_names
in favor of well chosen English.