From cd3aa38f7e253ed1289443f78972594876963972 Mon Sep 17 00:00:00 2001 From: Vinayak Mehta Date: Tue, 6 Nov 2018 19:18:45 +0530 Subject: [PATCH] Change table to grid (#196) --- docs/user/advanced.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/user/advanced.rst b/docs/user/advanced.rst index 92dcc1e..e26d22c 100644 --- a/docs/user/advanced.rst +++ b/docs/user/advanced.rst @@ -80,7 +80,7 @@ Let's plot the table (to see if it was detected correctly or not). This plot typ :: - >>> camelot.plot(tables[0], kind='table') + >>> camelot.plot(tables[0], kind='grid') >>> plt.show() .. figure:: ../_static/png/plot_table.png @@ -284,7 +284,7 @@ Let's plot the table for this PDF. :: >>> tables = camelot.read_pdf('short_lines.pdf') - >>> camelot.plot(tables[0], kind='table') + >>> camelot.plot(tables[0], kind='grid') >>> plt.show() .. figure:: ../_static/png/short_lines_1.png @@ -296,7 +296,7 @@ Clearly, the smaller lines separating the headers, couldn't be detected. Let's t :: >>> tables = camelot.read_pdf('short_lines.pdf', line_size_scaling=40) - >>> camelot.plot(tables[0], kind='table') + >>> camelot.plot(tables[0], kind='grid') >>> plt.show() .. figure:: ../_static/png/short_lines_2.png