lets-plot 4.5.2.dev1__cp311-cp311-macosx_11_0_arm64.whl → 4.6.0__cp311-cp311-macosx_11_0_arm64.whl
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.
Potentially problematic release.
This version of lets-plot might be problematic. Click here for more details.
- lets_plot/_kbridge.py +99 -1
- lets_plot/_version.py +1 -1
- lets_plot/bistro/_plot2d_common.py +7 -0
- lets_plot/bistro/im.py +38 -7
- lets_plot/bistro/joint.py +3 -3
- lets_plot/bistro/residual.py +3 -3
- lets_plot/bistro/waterfall.py +4 -2
- lets_plot/package_data/lets-plot.min.js +2 -2
- lets_plot/plot/__init__.py +2 -0
- lets_plot/plot/core.py +1 -1
- lets_plot/plot/geom.py +379 -81
- lets_plot/plot/ggbunch_.py +96 -0
- lets_plot/plot/gggrid_.py +3 -18
- lets_plot/plot/plot.py +7 -0
- lets_plot/plot/pos.py +10 -3
- lets_plot/plot/scale.py +45 -20
- lets_plot/plot/series_meta.py +9 -3
- lets_plot/plot/subplots.py +1 -1
- lets_plot/plot/subplots_util.py +24 -0
- lets_plot/plot/theme_.py +105 -17
- {lets_plot-4.5.2.dev1.dist-info → lets_plot-4.6.0.dist-info}/METADATA +34 -32
- {lets_plot-4.5.2.dev1.dist-info → lets_plot-4.6.0.dist-info}/RECORD +26 -24
- {lets_plot-4.5.2.dev1.dist-info → lets_plot-4.6.0.dist-info}/WHEEL +1 -1
- lets_plot_kotlin_bridge.cpython-311-darwin.so +0 -0
- {lets_plot-4.5.2.dev1.dist-info → lets_plot-4.6.0.dist-info}/LICENSE +0 -0
- {lets_plot-4.5.2.dev1.dist-info → lets_plot-4.6.0.dist-info}/top_level.txt +0 -0
lets_plot/plot/__init__.py
CHANGED
|
@@ -13,6 +13,7 @@ from .geom_extras import *
|
|
|
13
13
|
from .geom_function_ import *
|
|
14
14
|
from .geom_imshow_ import *
|
|
15
15
|
from .geom_livemap_ import *
|
|
16
|
+
from .ggbunch_ import *
|
|
16
17
|
from .gggrid_ import *
|
|
17
18
|
from .ggtb_ import *
|
|
18
19
|
from .guide import *
|
|
@@ -56,6 +57,7 @@ __all__ = (coord.__all__ +
|
|
|
56
57
|
annotation.__all__ +
|
|
57
58
|
marginal_layer.__all__ +
|
|
58
59
|
font_features.__all__ +
|
|
60
|
+
ggbunch_.__all__ +
|
|
59
61
|
gggrid_.__all__ +
|
|
60
62
|
ggtb_.__all__ +
|
|
61
63
|
expand_limits_.__all__
|
lets_plot/plot/core.py
CHANGED
|
@@ -706,7 +706,7 @@ class LayerSpec(FeatureSpec):
|
|
|
706
706
|
map_data_meta = {'georeference': {}}
|
|
707
707
|
else:
|
|
708
708
|
# Fetch proper GeoDataFrame. Further processing is the same as if map was a GDF.
|
|
709
|
-
if name in ['point', 'pie', 'text', 'livemap']:
|
|
709
|
+
if name in ['point', 'pie', 'text', 'label', 'livemap']:
|
|
710
710
|
map = map.get_centroids()
|
|
711
711
|
elif name in ['map', 'polygon']:
|
|
712
712
|
map = map.get_boundaries()
|