A Pandas DataFrame viewer for IPython Notebook.
Project description
qgrid
Qgrid is an IPython widget which uses SlickGrid to render pandas DataFrames within a Jupyter notebook. This allows you to explore your DataFrames with intuitive scrolling, sorting, and filtering controls, as well as edit your DataFrames by double clicking a cell (new in v0.3.0).
We originally developed qgrid for use in Quantopian’s hosted research environment, but no longer have a specific project in mind for using qgrid in the research environment. For that reason we haven’t been investing much time in developing new features, and almost all of the forward development has come from the community. We’ve mainly just been reviewing PR’s, writing docs, and occasionally making small contributions.
Demo
See the demo by viewing qgrid_demo.ipynb in nbviewer.
API Documentation
API documentation is hosted on readthedocs.
Installation
Python Dependencies:
Qgrid runs on Python 2 or 3. You’ll also need pip for the installation steps below.
Qgrid depends on the following three Python packages:
- Jupyter notebook
This is the interactive Python environment in which qgrid runs.
- ipywidgets
In order for Jupyter notebooks to be able to run widgets, you have to also install this ipywidgets package. It’s maintained by the Jupyter organization, the same people who created Jupyter notebook.
- Pandas
A powerful data analysis / manipulation library for Python. Qgrid requires that the data to be rendered as an interactive grid be provided in the form of a pandas DataFrame.
These are listed in requirements.txt and will be automatically installed (if necessary) when qgrid is installed via pip.
Compatibility:
qgrid |
IPython / Jupyter notebook |
ipywidgets |
---|---|---|
0.2.0 |
2.x |
N/A |
0.3.x |
3.x |
N/A |
0.3.x |
4.0 |
4.0.x |
0.3.x |
4.1 |
4.1.x |
0.3.2 |
4.2 |
5.x |
Installing from PyPI:
Qgrid is on PyPI and can be installed like this:
pip install qgrid
If you need to install a specific version of qgrid, pip allows you to specify it like this:
pip install qgrid==0.2.0
See the Releases page for more details about the versions that are available.
Installing from GitHub:
The latest release on PyPI is often out of date, and might not contain the latest bug fixes and features that you want. To run the latest code that is on master, install qgrid from GitHub instead of PyPI:
pip install git+https://github.com/quantopian/qgrid
Running the demo notebook locally
The qgrid repository includes a demo notebook which will help you get familiar with the functionality that qgrid provides. This demo notebook doesn’t get downloaded to your machine when you install qgrid with pip, so you’ll need to clone the qgrid repository to get it. Here are the steps to clone the repository and run the demo notebook:
Clone the repository from GitHub:
git clone https://github.com/quantopian/qgrid.git
Go to the top-level directory of the qgrid repository and run the notebook:
cd qgrid jupyter notebook
The advantage of running the notebook from the top-level directoy of the qgrid repository is the sample notebook that comes with qgrid will be available on the first page that appears when the web browser launches. Here’s what you can expect that page to look like:
Click on qgrid_demo.ipynb to open it. Here’s what that should like:
Click the “Cell” menu at the top of the notebook and click “Run All” to run all the cells in the notebook and render a few sample qgrids.
Running from source
If you’d like to contribute to qgrid, or just want to be able to modify the source code for your own purposes, you’ll want to clone this repository and run qgrid from your local copy of the repository. The following steps explain how to do this.
Clone the repository from GitHub and cd into the top-level directory:
git clone https://github.com/quantopian/qgrid.git cd qgrid
Install the current project in editable mode:
pip install -e .
This will install the packages that qgrid depends on in the normal way, but will do something special for the qgrid package itself. Instead of copying the qgrid directory to the site-packages directory of the environment where it was installed (like a virualenv), pip will create a symbolic link which links to the directory you passed in to the pip install -e. The result is changes that you make to the source code will be reflected as soon as you restart the notebook.
Run the notebook as you normally would with the following command:
jupyter notebook
Now when you make changes to qgrid’s Python code, those changes will take effect as soon as you restart the Jupyter notebook server.
If the code you need to change is in qgrid’s javascript, then call the nb_install function from within the notebook to copy your latest changes to the “nbextensions” folder (i.e. where widgets must put their javascript for it to be found by the notebook).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.