Is there an easy way to export a data frame (or even a part of it) to LaTeX?
I searched in google and was only able to find solutions using asciitables.>
If you want to save it:
with open('mytable.tex', 'w') as tf: tf.write(df.to_latex())