From 151b2ad84c03bdde1188f0235aab32ccf91f057b Mon Sep 17 00:00:00 2001 From: Grant Nestor Date: Mon, 6 Mar 2017 12:14:01 -0800 Subject: [PATCH] Set pandas options in init --- jupyterlab_table/__init__.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/jupyterlab_table/__init__.py b/jupyterlab_table/__init__.py index 79ed5bc..0c92070 100755 --- a/jupyterlab_table/__init__.py +++ b/jupyterlab_table/__init__.py @@ -2,6 +2,9 @@ import json import pandas as pd +pd.options.display.html.table_schema = True +pd.options.display.max_rows = 10000 + # Running `npm run build` will create static resources in the static # directory of this Python package (and create that directory if necessary).