vaex-viz 0.5.3__tar.gz → 0.6.0__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.
- vaex_viz-0.6.0/PKG-INFO +24 -0
- {vaex-viz-0.5.3 → vaex_viz-0.6.0}/setup.py +4 -2
- vaex_viz-0.6.0/vaex/viz/_version.py +2 -0
- {vaex-viz-0.5.3 → vaex_viz-0.6.0}/vaex/viz/mpl.py +3 -3
- vaex_viz-0.6.0/vaex_viz.egg-info/PKG-INFO +24 -0
- {vaex-viz-0.5.3 → vaex_viz-0.6.0}/vaex_viz.egg-info/entry_points.txt +0 -1
- vaex-viz-0.5.3/PKG-INFO +0 -10
- vaex-viz-0.5.3/vaex/viz/_version.py +0 -2
- vaex-viz-0.5.3/vaex_viz.egg-info/PKG-INFO +0 -10
- {vaex-viz-0.5.3 → vaex_viz-0.6.0}/LICENSE.txt +0 -0
- {vaex-viz-0.5.3 → vaex_viz-0.6.0}/MANIFEST.in +0 -0
- {vaex-viz-0.5.3 → vaex_viz-0.6.0}/setup.cfg +0 -0
- {vaex-viz-0.5.3 → vaex_viz-0.6.0}/vaex/viz/__init__.py +0 -0
- {vaex-viz-0.5.3 → vaex_viz-0.6.0}/vaex/viz/contour.py +0 -0
- {vaex-viz-0.5.3 → vaex_viz-0.6.0}/vaex/viz/tensor.py +0 -0
- {vaex-viz-0.5.3 → vaex_viz-0.6.0}/vaex/viz/vector.py +0 -0
- {vaex-viz-0.5.3 → vaex_viz-0.6.0}/vaex_viz.egg-info/SOURCES.txt +0 -0
- {vaex-viz-0.5.3 → vaex_viz-0.6.0}/vaex_viz.egg-info/dependency_links.txt +0 -0
- {vaex-viz-0.5.3 → vaex_viz-0.6.0}/vaex_viz.egg-info/not-zip-safe +0 -0
- {vaex-viz-0.5.3 → vaex_viz-0.6.0}/vaex_viz.egg-info/requires.txt +0 -0
- {vaex-viz-0.5.3 → vaex_viz-0.6.0}/vaex_viz.egg-info/top_level.txt +0 -0
vaex_viz-0.6.0/PKG-INFO
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: vaex-viz
|
|
3
|
+
Version: 0.6.0
|
|
4
|
+
Summary: Visualization for vaex
|
|
5
|
+
Home-page: https://www.github.com/maartenbreddels/vaex
|
|
6
|
+
Author: Maarten A. Breddels
|
|
7
|
+
Author-email: maartenbreddels@gmail.com
|
|
8
|
+
License: MIT
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
License-File: LICENSE.txt
|
|
11
|
+
Requires-Dist: vaex-core<5,>=4.0.0
|
|
12
|
+
Requires-Dist: matplotlib>=1.3.1
|
|
13
|
+
Requires-Dist: pillow
|
|
14
|
+
Dynamic: author
|
|
15
|
+
Dynamic: author-email
|
|
16
|
+
Dynamic: description
|
|
17
|
+
Dynamic: description-content-type
|
|
18
|
+
Dynamic: home-page
|
|
19
|
+
Dynamic: license
|
|
20
|
+
Dynamic: license-file
|
|
21
|
+
Dynamic: requires-dist
|
|
22
|
+
Dynamic: summary
|
|
23
|
+
|
|
24
|
+
Visualization for vaex
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import os
|
|
2
|
-
import
|
|
2
|
+
from importlib.machinery import SourceFileLoader
|
|
3
3
|
from setuptools import setup
|
|
4
4
|
|
|
5
5
|
dirname = os.path.dirname(__file__)
|
|
6
6
|
path_version = os.path.join(dirname, "vaex/viz/_version.py")
|
|
7
|
-
version =
|
|
7
|
+
version = SourceFileLoader('version', path_version).load_module()
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
name = 'vaex'
|
|
@@ -18,6 +18,8 @@ install_requires_viz = ["vaex-core>=4.0.0,<5", "matplotlib>=1.3.1", "pillow"]
|
|
|
18
18
|
setup(name=name + '-viz',
|
|
19
19
|
version=version,
|
|
20
20
|
description='Visualization for vaex',
|
|
21
|
+
long_description="Visualization for vaex",
|
|
22
|
+
long_description_content_type="text/markdown",
|
|
21
23
|
url=url,
|
|
22
24
|
author=author,
|
|
23
25
|
author_email=author_email,
|
|
@@ -747,7 +747,7 @@ def heatmap(self, x=None, y=None, z=None, what="count(*)", vwhat=None, reduce=["
|
|
|
747
747
|
ax = plt.subplot(gs[0, j])
|
|
748
748
|
colorbar = fig.colorbar(sm, cax=ax, orientation="horizontal")
|
|
749
749
|
else:
|
|
750
|
-
colorbar = fig.colorbar(sm)
|
|
750
|
+
colorbar = fig.colorbar(sm, ax=plt.gca())
|
|
751
751
|
if "what" in labels:
|
|
752
752
|
label = labels["what"][j]
|
|
753
753
|
if facets > 1:
|
|
@@ -763,7 +763,7 @@ def heatmap(self, x=None, y=None, z=None, what="count(*)", vwhat=None, reduce=["
|
|
|
763
763
|
ax = plt.subplot(gs[i, -1])
|
|
764
764
|
colorbar = fig.colorbar(sm, cax=ax)
|
|
765
765
|
else:
|
|
766
|
-
colorbar = fig.colorbar(sm)
|
|
766
|
+
colorbar = fig.colorbar(sm, ax=plt.gca())
|
|
767
767
|
label = labels["what"][i]
|
|
768
768
|
colorbar.ax.set_ylabel(colorbar_label or label)
|
|
769
769
|
|
|
@@ -802,7 +802,7 @@ def heatmap(self, x=None, y=None, z=None, what="count(*)", vwhat=None, reduce=["
|
|
|
802
802
|
ax = plt.subplot(gs[row, column])
|
|
803
803
|
colorbar = fig.colorbar(sm, ax=ax)
|
|
804
804
|
else:
|
|
805
|
-
colorbar = fig.colorbar(sm)
|
|
805
|
+
colorbar = fig.colorbar(sm, ax=plt.gca())
|
|
806
806
|
label = labels["what"][what_index]
|
|
807
807
|
colorbar.ax.set_ylabel(colorbar_label or label)
|
|
808
808
|
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: vaex-viz
|
|
3
|
+
Version: 0.6.0
|
|
4
|
+
Summary: Visualization for vaex
|
|
5
|
+
Home-page: https://www.github.com/maartenbreddels/vaex
|
|
6
|
+
Author: Maarten A. Breddels
|
|
7
|
+
Author-email: maartenbreddels@gmail.com
|
|
8
|
+
License: MIT
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
License-File: LICENSE.txt
|
|
11
|
+
Requires-Dist: vaex-core<5,>=4.0.0
|
|
12
|
+
Requires-Dist: matplotlib>=1.3.1
|
|
13
|
+
Requires-Dist: pillow
|
|
14
|
+
Dynamic: author
|
|
15
|
+
Dynamic: author-email
|
|
16
|
+
Dynamic: description
|
|
17
|
+
Dynamic: description-content-type
|
|
18
|
+
Dynamic: home-page
|
|
19
|
+
Dynamic: license
|
|
20
|
+
Dynamic: license-file
|
|
21
|
+
Dynamic: requires-dist
|
|
22
|
+
Dynamic: summary
|
|
23
|
+
|
|
24
|
+
Visualization for vaex
|
vaex-viz-0.5.3/PKG-INFO
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 1.0
|
|
2
|
-
Name: vaex-viz
|
|
3
|
-
Version: 0.5.3
|
|
4
|
-
Summary: Visualization for vaex
|
|
5
|
-
Home-page: https://www.github.com/maartenbreddels/vaex
|
|
6
|
-
Author: Maarten A. Breddels
|
|
7
|
-
Author-email: maartenbreddels@gmail.com
|
|
8
|
-
License: MIT
|
|
9
|
-
Description: UNKNOWN
|
|
10
|
-
Platform: UNKNOWN
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 1.0
|
|
2
|
-
Name: vaex-viz
|
|
3
|
-
Version: 0.5.3
|
|
4
|
-
Summary: Visualization for vaex
|
|
5
|
-
Home-page: https://www.github.com/maartenbreddels/vaex
|
|
6
|
-
Author: Maarten A. Breddels
|
|
7
|
-
Author-email: maartenbreddels@gmail.com
|
|
8
|
-
License: MIT
|
|
9
|
-
Description: UNKNOWN
|
|
10
|
-
Platform: UNKNOWN
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|