You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.rst
+27-7Lines changed: 27 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,26 +11,46 @@ Qgrid is a Jupyter notebook widget which uses `SlickGrid <https://github.com/mle
11
11
DataFrames within a Jupyter notebook. This allows you to explore your DataFrames with intuitive scrolling, sorting, and
12
12
filtering controls, as well as edit your DataFrames by double clicking cells.
13
13
14
-
What's New in 1.0.3 - Introducing Qgrid Events
15
-
----------------------------------------------
16
-
Qgrid has some new API methods as of version 1.0.3 which can be used to attach event handlers. Event handlers are callback methods that get called when certain events occur in the qgrid interface. In qgrid 1.0.3, event handlers can be attached with the ``on`` method and detached with the ``off`` method. There are ``on`` and ``off`` methods on both the ``qgrid`` module (see `qgrid.on <https://qgrid.readthedocs.io/en/latest/#qgrid.on>`_), and on individual QgridWidget instances (see `qgrid.QgridWidget.on <https://qgrid.readthedocs.io/en/latest/#qgrid.QgridWidget.on>`_).
14
+
Qgrid was developed for use in `Quantopian's hosted research environment
and is available for use in that environment as of June 2018.
17
+
18
+
What's New
19
+
----------
20
+
**Improved MultiIndex Support (as of 1.0.6-beta.6)**:
21
+
Qgrid now displays multi-indexed DataFrames with some of the index cells merged for readability, as is normally done when viewing DataFrames as a static html table. The following image shows qgrid displaying a multi-indexed DataFrame that was returned from Quantopian's `Pipeline API <https://www.quantopian.com/tutorials/pipeline?utm_source=github&utm_medium=web&utm_campaign=qgrid-repo>`_:
Qgrid has some new API methods which can be used to attach event handlers. Event handlers are callback methods that get called when certain events occur in the qgrid interface. In qgrid 1.0.3, event handlers can be attached with the ``on`` method and detached with the ``off`` method. There are ``on`` and ``off`` methods on both the ``qgrid`` module (see `qgrid.on <https://qgrid.readthedocs.io/en/latest/#qgrid.on>`_), and on individual QgridWidget instances (see `qgrid.QgridWidget.on <https://qgrid.readthedocs.io/en/latest/#qgrid.QgridWidget.on>`_).
17
30
18
31
To get a better idea of how these methods might be used, see the `Events API`_ section below.
19
32
20
33
Demo
21
34
----
22
-
Click the badge below to try out qgrid in a live sample notebook:
35
+
Click the badge below to try out the latest beta of qgrid in Quantopian's hosted research environment. If you're already signed into Quantopian you'll be brought directly to the demo notebook. Otherwise you'll be prompted to register (it's free):
*For both binder links, you'll see a brief loading screen while a server is being created for you in the cloud. This shouldn't take more than a minute, and usually completes in under 10 seconds.*
33
51
52
+
*The binder demos generally will be using the most recent stable release of qgrid, so features that were added in a recent beta version may not be available in those demos.*
53
+
34
54
For people who would rather not go to another page to try out qgrid for real, here's the tldr; version:
and is available for use in that environment as of June 2018.
22
+
18
23
19
24
Other qgrid resources
20
25
---------------------
@@ -26,8 +31,16 @@ resources:
26
31
This is where you'll find the source code and the rest of the documentation for the project, including the
27
32
instructions for installing and running qgrid.
28
33
34
+
`qgrid demo on Quantopian <https://www.quantopian.com/clone_notebook?id=5ae9cff15230100046c3958d&utm_source=readthedocs&utm_medium=web&utm_campaign=qgrid-repo>`_
35
+
Click the badge below try out the latest beta of qgrid in Quantopian's hosted research environment. If you're
36
+
already signed into Quantopian you'll be brought directly to the demo notebook. Otherwise you'll be prompted
0 commit comments