I want to save a table with 1538 rows by 4 columns as an image, I saw this post and tried this code:
import matplotlib.pyplot as plt
import pandas as pd
from pandas.tools.plotting import table
df = pd.read_csv('filepath.csv')
ax = plt.subplot(111, loc='top')
ax.xaxis.set_visible(False)
ax.yaxis.set_visible(False)
table(ax, df)
plt.savefig('mytable.png')
but what I got was this, and the goal is a big image "scrollable". Is there anyway to do It?