iqplot 0.3.4__tar.gz → 0.3.6__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {iqplot-0.3.4/iqplot.egg-info → iqplot-0.3.6}/PKG-INFO +7 -2
- iqplot-0.3.6/doc/user_guide/omissions.ipynb +1853 -0
- {iqplot-0.3.4 → iqplot-0.3.6}/doc/user_guide/user_guide.ipynb +174 -140
- iqplot-0.3.6/iqplot/__init__.py +10 -0
- {iqplot-0.3.4 → iqplot-0.3.6}/iqplot/cat.py +60 -27
- {iqplot-0.3.4 → iqplot-0.3.6}/iqplot/dist.py +46 -31
- {iqplot-0.3.4 → iqplot-0.3.6}/iqplot/utils.py +40 -39
- {iqplot-0.3.4 → iqplot-0.3.6/iqplot.egg-info}/PKG-INFO +7 -2
- {iqplot-0.3.4 → iqplot-0.3.6}/setup.py +1 -1
- iqplot-0.3.4/doc/user_guide/omissions.ipynb +0 -1818
- iqplot-0.3.4/iqplot/__init__.py +0 -19
- {iqplot-0.3.4 → iqplot-0.3.6}/.gitignore +0 -0
- {iqplot-0.3.4 → iqplot-0.3.6}/LICENSE +0 -0
- {iqplot-0.3.4 → iqplot-0.3.6}/README.md +0 -0
- {iqplot-0.3.4 → iqplot-0.3.6}/doc/.gitignore +0 -0
- {iqplot-0.3.4 → iqplot-0.3.6}/doc/Makefile +0 -0
- {iqplot-0.3.4 → iqplot-0.3.6}/doc/_static/custom.css +0 -0
- {iqplot-0.3.4 → iqplot-0.3.6}/doc/_static/logo.png +0 -0
- {iqplot-0.3.4 → iqplot-0.3.6}/doc/_templates/breadcrumbs.html +0 -0
- {iqplot-0.3.4 → iqplot-0.3.6}/doc/_templates/footer.html +0 -0
- {iqplot-0.3.4 → iqplot-0.3.6}/doc/_templates/layout.html +0 -0
- {iqplot-0.3.4 → iqplot-0.3.6}/doc/conf.py +0 -0
- {iqplot-0.3.4 → iqplot-0.3.6}/doc/credits_and_citation.rst +0 -0
- {iqplot-0.3.4 → iqplot-0.3.6}/doc/getting_started/installation.rst +0 -0
- {iqplot-0.3.4 → iqplot-0.3.6}/doc/getting_started/purpose.rst +0 -0
- {iqplot-0.3.4 → iqplot-0.3.6}/doc/index.rst +0 -0
- {iqplot-0.3.4 → iqplot-0.3.6}/doc/make.bat +0 -0
- {iqplot-0.3.4 → iqplot-0.3.6}/doc/user_guide/.gitignore +0 -0
- {iqplot-0.3.4 → iqplot-0.3.6}/doc/user_guide/api.rst +0 -0
- {iqplot-0.3.4 → iqplot-0.3.6}/doc/user_guide/holoviews.ipynb +0 -0
- {iqplot-0.3.4 → iqplot-0.3.6}/iqplot/.gitignore +0 -0
- {iqplot-0.3.4 → iqplot-0.3.6}/iqplot.egg-info/SOURCES.txt +0 -0
- {iqplot-0.3.4 → iqplot-0.3.6}/iqplot.egg-info/dependency_links.txt +0 -0
- {iqplot-0.3.4 → iqplot-0.3.6}/iqplot.egg-info/requires.txt +0 -0
- {iqplot-0.3.4 → iqplot-0.3.6}/iqplot.egg-info/top_level.txt +0 -0
- {iqplot-0.3.4 → iqplot-0.3.6}/requirements.txt +0 -0
- {iqplot-0.3.4 → iqplot-0.3.6}/setup.cfg +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: iqplot
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.6
|
|
4
4
|
Summary: Generate Bokeh plots for data sets with one quantitative variable.
|
|
5
5
|
Home-page: https://github.com/justinbois/iqplot
|
|
6
|
-
Download-URL: https://github.com/justinbois/iqplot/tarball/0.3.
|
|
6
|
+
Download-URL: https://github.com/justinbois/iqplot/tarball/0.3.6
|
|
7
7
|
Author: Justin Bois
|
|
8
8
|
Author-email: bois@caltech.edu
|
|
9
9
|
License: BSD
|
|
@@ -11,5 +11,10 @@ Classifier: Development Status :: 4 - Beta
|
|
|
11
11
|
Classifier: Intended Audience :: Developers
|
|
12
12
|
Classifier: Programming Language :: Python :: 3
|
|
13
13
|
License-File: LICENSE
|
|
14
|
+
Requires-Dist: numpy
|
|
15
|
+
Requires-Dist: xarray
|
|
16
|
+
Requires-Dist: pandas
|
|
17
|
+
Requires-Dist: bokeh
|
|
18
|
+
Requires-Dist: colorcet
|
|
14
19
|
|
|
15
20
|
Generate Bokeh plots for data sets with one quantitative variable.
|