plotnine 0.15.0a6__py3-none-any.whl → 0.15.0a7__py3-none-any.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.
- plotnine/_mpl/layout_manager/_layout_items.py +6 -2
- plotnine/_mpl/layout_manager/_layout_tree.py +217 -56
- plotnine/_mpl/layout_manager/_spaces.py +98 -28
- plotnine/_mpl/text.py +1 -7
- plotnine/composition/_arrange.py +16 -1
- plotnine/composition/_beside.py +7 -0
- plotnine/composition/_plot_spacer.py +6 -0
- plotnine/composition/_stack.py +7 -0
- plotnine/geoms/geom_bar.py +1 -0
- plotnine/geoms/geom_bin_2d.py +4 -0
- plotnine/geoms/geom_boxplot.py +4 -0
- plotnine/geoms/geom_count.py +4 -0
- plotnine/geoms/geom_density_2d.py +4 -0
- plotnine/geoms/geom_dotplot.py +1 -1
- plotnine/geoms/geom_histogram.py +1 -1
- plotnine/geoms/geom_pointdensity.py +4 -0
- plotnine/geoms/geom_qq.py +4 -0
- plotnine/geoms/geom_qq_line.py +4 -0
- plotnine/geoms/geom_quantile.py +4 -0
- plotnine/geoms/geom_sina.py +1 -1
- plotnine/geoms/geom_smooth.py +4 -0
- plotnine/geoms/geom_violin.py +4 -0
- plotnine/stats/stat_bin.py +4 -0
- plotnine/stats/stat_bin_2d.py +4 -0
- plotnine/stats/stat_bindot.py +1 -0
- plotnine/stats/stat_boxplot.py +1 -1
- plotnine/stats/stat_count.py +1 -0
- plotnine/stats/stat_density.py +1 -1
- plotnine/stats/stat_density_2d.py +1 -0
- plotnine/stats/stat_ecdf.py +1 -1
- plotnine/stats/stat_ellipse.py +4 -0
- plotnine/stats/stat_function.py +4 -0
- plotnine/stats/stat_hull.py +4 -0
- plotnine/stats/stat_identity.py +4 -0
- plotnine/stats/stat_pointdensity.py +1 -0
- plotnine/stats/stat_qq.py +1 -0
- plotnine/stats/stat_qq_line.py +1 -0
- plotnine/stats/stat_quantile.py +1 -1
- plotnine/stats/stat_sina.py +1 -1
- plotnine/stats/stat_smooth.py +1 -0
- plotnine/stats/stat_sum.py +4 -0
- plotnine/stats/stat_summary.py +1 -1
- plotnine/stats/stat_summary_bin.py +1 -1
- plotnine/stats/stat_unique.py +4 -0
- plotnine/stats/stat_ydensity.py +1 -1
- plotnine/themes/theme_void.py +1 -7
- {plotnine-0.15.0a6.dist-info → plotnine-0.15.0a7.dist-info}/METADATA +1 -1
- {plotnine-0.15.0a6.dist-info → plotnine-0.15.0a7.dist-info}/RECORD +51 -51
- {plotnine-0.15.0a6.dist-info → plotnine-0.15.0a7.dist-info}/WHEEL +0 -0
- {plotnine-0.15.0a6.dist-info → plotnine-0.15.0a7.dist-info}/licenses/LICENSE +0 -0
- {plotnine-0.15.0a6.dist-info → plotnine-0.15.0a7.dist-info}/top_level.txt +0 -0
plotnine/stats/stat_function.py
CHANGED
|
@@ -37,6 +37,10 @@ class stat_function(stat):
|
|
|
37
37
|
then the `xlim` must be provided.
|
|
38
38
|
args : Optional[tuple[Any] | dict[str, Any]], default=None
|
|
39
39
|
Arguments to pass to `fun`.
|
|
40
|
+
|
|
41
|
+
See Also
|
|
42
|
+
--------
|
|
43
|
+
plotnine.geom_path : The default `geom` for this `stat`.
|
|
40
44
|
"""
|
|
41
45
|
|
|
42
46
|
_aesthetics_doc = """
|
plotnine/stats/stat_hull.py
CHANGED
|
@@ -26,6 +26,10 @@ class stat_hull(stat):
|
|
|
26
26
|
Raised when Qhull encounters an error condition,
|
|
27
27
|
such as geometrical degeneracy when options to resolve are
|
|
28
28
|
not enabled.
|
|
29
|
+
|
|
30
|
+
See Also
|
|
31
|
+
--------
|
|
32
|
+
plotnine.geom_path : The default `geom` for this `stat`.
|
|
29
33
|
"""
|
|
30
34
|
|
|
31
35
|
_aesthetics_doc = """
|
plotnine/stats/stat_identity.py
CHANGED
plotnine/stats/stat_qq.py
CHANGED
plotnine/stats/stat_qq_line.py
CHANGED
plotnine/stats/stat_quantile.py
CHANGED
plotnine/stats/stat_sina.py
CHANGED
plotnine/stats/stat_smooth.py
CHANGED
plotnine/stats/stat_sum.py
CHANGED
plotnine/stats/stat_summary.py
CHANGED
plotnine/stats/stat_unique.py
CHANGED
plotnine/stats/stat_ydensity.py
CHANGED
plotnine/themes/theme_void.py
CHANGED
|
@@ -25,7 +25,6 @@ class theme_void(theme):
|
|
|
25
25
|
|
|
26
26
|
def __init__(self, base_size=11, base_family=None):
|
|
27
27
|
base_family = base_family or get_option("base_family")
|
|
28
|
-
half_line = base_size / 2
|
|
29
28
|
m = get_option("base_margin")
|
|
30
29
|
# Use only inherited elements and make everything blank
|
|
31
30
|
theme.__init__(
|
|
@@ -98,11 +97,6 @@ class theme_void(theme):
|
|
|
98
97
|
plot_tag_location="margin",
|
|
99
98
|
plot_tag_position="topleft",
|
|
100
99
|
strip_align=0,
|
|
101
|
-
strip_text=element_text(
|
|
102
|
-
color="#1A1A1A",
|
|
103
|
-
size=base_size * 0.8,
|
|
104
|
-
linespacing=1.5,
|
|
105
|
-
margin=margin_auto(half_line * 0.8),
|
|
106
|
-
),
|
|
100
|
+
strip_text=element_text(size=base_size * 0.8),
|
|
107
101
|
complete=True,
|
|
108
102
|
)
|
|
@@ -16,15 +16,15 @@ plotnine/_mpl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
16
16
|
plotnine/_mpl/gridspec.py,sha256=OvlXchYXam1c1n8iNPKu4fJr6rqmH7OWebhJX5qqOmY,7903
|
|
17
17
|
plotnine/_mpl/offsetbox.py,sha256=E7810lS9W7Gexwz5mkSMz7PQXXHkYX-WHKlPHqapmTg,3216
|
|
18
18
|
plotnine/_mpl/patches.py,sha256=rYWAZHhTGi1B_dFfVI9JsrYgioum7aQjGwpNh1Q0tKg,3838
|
|
19
|
-
plotnine/_mpl/text.py,sha256=
|
|
19
|
+
plotnine/_mpl/text.py,sha256=HpTcdSCXOFGdW8Yz5Go-6KRP6FoNNmWMB85vmbBqKnQ,6571
|
|
20
20
|
plotnine/_mpl/ticker.py,sha256=RY_7AdTggc7QBq9_t0KBJXg36oxKfB-Vtc9FzLnaGnQ,393
|
|
21
21
|
plotnine/_mpl/transforms.py,sha256=DNaOlNq76xlT696sN8ot1bmYyp4mmrjXQHk3kTi4HIg,76
|
|
22
22
|
plotnine/_mpl/utils.py,sha256=0GY3CWWXZiNHe333v9GAquRe5naO54JeiPt67-UvVYw,4147
|
|
23
23
|
plotnine/_mpl/layout_manager/__init__.py,sha256=IXpPF5Oycc45uFpK4MJ6kcQCe1u5VUfnHLNZGcnrJCg,157
|
|
24
24
|
plotnine/_mpl/layout_manager/_engine.py,sha256=m6FDFc1XELfzNSIXaFiN3ruoTgub2PaV3wPQWP0IBYE,2804
|
|
25
|
-
plotnine/_mpl/layout_manager/_layout_items.py,sha256=
|
|
26
|
-
plotnine/_mpl/layout_manager/_layout_tree.py,sha256=
|
|
27
|
-
plotnine/_mpl/layout_manager/_spaces.py,sha256=
|
|
25
|
+
plotnine/_mpl/layout_manager/_layout_items.py,sha256=QikIoiYKDDfy2mrX9rZUIqD7Cy0ihfOyZHEs1ajF4CA,29710
|
|
26
|
+
plotnine/_mpl/layout_manager/_layout_tree.py,sha256=sIIlwpdM7u-fFkOzZ6cnUwaz_7nLNxI6_BnPMZmtwMc,32065
|
|
27
|
+
plotnine/_mpl/layout_manager/_spaces.py,sha256=5gSfYSoymH5prauGq1h9MZG4IlBbzd0-cSaS5RedMyU,38290
|
|
28
28
|
plotnine/_utils/__init__.py,sha256=3tcSTng6Mtk1o6NPEikALHKD3ZGuAYofjQJREHX84a4,30992
|
|
29
29
|
plotnine/_utils/context.py,sha256=HPQy_uyNXdS0s9URD7ZePyuc5hFU2XrRBLDTqRDLJzY,1708
|
|
30
30
|
plotnine/_utils/dev.py,sha256=0qgRbMhcd4dfuLuYxx0skocKAtfwHF02ntyILRBogbg,1629
|
|
@@ -33,11 +33,11 @@ plotnine/_utils/quarto.py,sha256=bwbU3ork8wuUIW5VDJ73J_DbWWzpYWpAd76cHMzCRao,890
|
|
|
33
33
|
plotnine/_utils/registry.py,sha256=HoiB2NnbEHufXjYnVJyrJKflk2RwKtTYk2L3n7tH4XA,3321
|
|
34
34
|
plotnine/_utils/yippie.py,sha256=DbmxvVrd34P24CCmOZrAulyGQ35rXNaSr8BuutS2Uio,2392
|
|
35
35
|
plotnine/composition/__init__.py,sha256=WXkLaqbgpOquCbq_hakUUQlcIka9fN0IMKNm-DOns6E,198
|
|
36
|
-
plotnine/composition/_arrange.py,sha256
|
|
37
|
-
plotnine/composition/_beside.py,sha256=
|
|
38
|
-
plotnine/composition/_plot_spacer.py,sha256=
|
|
36
|
+
plotnine/composition/_arrange.py,sha256=p0Z3f63EwVvjtE9mKsRuVhQ3jY8ZEm3yBLJyZITCB1k,11591
|
|
37
|
+
plotnine/composition/_beside.py,sha256=SBhxNRia5iqFwlUtMu9-4lcTOGZVlcjWM78geXKogaQ,1200
|
|
38
|
+
plotnine/composition/_plot_spacer.py,sha256=YZr1b02RnNWTuRRHkbGaSjUKFyWM_5FFRWf-2mI6PTk,1513
|
|
39
39
|
plotnine/composition/_plotspec.py,sha256=0F7q7PjDMDqcallpnBdX3N2iSRjdBTyjSvMFf83uvPU,1015
|
|
40
|
-
plotnine/composition/_stack.py,sha256=
|
|
40
|
+
plotnine/composition/_stack.py,sha256=YoI052fFlaA3KO-_FkSf2N2SNK-WRqxdg_vzGAJ7m3I,1217
|
|
41
41
|
plotnine/coords/__init__.py,sha256=inM-9JwSPvYLlOy6opye0YV2EGWsI4708wGKdHvQvVM,301
|
|
42
42
|
plotnine/coords/coord.py,sha256=Yu2xj4BqFBWlS0XHNDa6h8Dek0_PA6Lssv3M9EneSB8,6883
|
|
43
43
|
plotnine/coords/coord_cartesian.py,sha256=vGeSFe9UyycUkbjdjoPNSQJwnnU7fEmsk0nl_oBvzxY,3038
|
|
@@ -78,20 +78,20 @@ plotnine/geoms/annotation_stripes.py,sha256=4Cw7TJ4SZChm_ioqfiiku0cPNnLruGuAP-4v
|
|
|
78
78
|
plotnine/geoms/geom.py,sha256=ayhBEoPc-9MLpu18HkwLoby4NIKC68ED4Pq0ioa4I9c,17687
|
|
79
79
|
plotnine/geoms/geom_abline.py,sha256=6oxAJl_yFKKmf7OTHvACw6fg6kgJEN54hGKkyWOLr6o,3188
|
|
80
80
|
plotnine/geoms/geom_area.py,sha256=QtS9NO17v-i5gvfakN8L96xwjt3dFuyZdYN8oXaXWOY,818
|
|
81
|
-
plotnine/geoms/geom_bar.py,sha256
|
|
82
|
-
plotnine/geoms/geom_bin_2d.py,sha256=
|
|
81
|
+
plotnine/geoms/geom_bar.py,sha256=-fMfgoO4NmHqoWZy8P-kGJxHY6wMPOlT1DT011x2mdU,1794
|
|
82
|
+
plotnine/geoms/geom_bin_2d.py,sha256=A4mBOEiyqJZN0EOhFkOK3diUbsgNlTw3jixVfPWmN-A,662
|
|
83
83
|
plotnine/geoms/geom_blank.py,sha256=38BpE9iSh3ktbOe9ayNer6IDD1q7E4EiKS_KnFSko0c,770
|
|
84
|
-
plotnine/geoms/geom_boxplot.py,sha256=
|
|
84
|
+
plotnine/geoms/geom_boxplot.py,sha256=mKp9iH2Zet9cXlTCwxfdv73Y057lvWBCs3P_7q7Adrg,9869
|
|
85
85
|
plotnine/geoms/geom_col.py,sha256=KCpme3vsc_tTbjGvL7ZhJZ4KFrQDQw3K8JyO6EBFn4E,1187
|
|
86
|
-
plotnine/geoms/geom_count.py,sha256=
|
|
86
|
+
plotnine/geoms/geom_count.py,sha256=BkzQJFGf7z6lJ0fCrKDUqdGVo0GBwMUjOi3QVdvwEyQ,598
|
|
87
87
|
plotnine/geoms/geom_crossbar.py,sha256=0NGUY4fhL8VxpGaBgjKQNJy85XJeLc6GiPCs5LZQuCc,6242
|
|
88
88
|
plotnine/geoms/geom_density.py,sha256=UwUkJxI79L3z19tmoSI6ZYs418XTbRznd-Abzrec3VY,526
|
|
89
|
-
plotnine/geoms/geom_density_2d.py,sha256=
|
|
90
|
-
plotnine/geoms/geom_dotplot.py,sha256=
|
|
89
|
+
plotnine/geoms/geom_density_2d.py,sha256=9_FnLLRj0Z6DtttUYTOi7mx5bkZSxOTb6PbfuxfnILE,494
|
|
90
|
+
plotnine/geoms/geom_dotplot.py,sha256=NPeZ2jiDbUFgnpDTLOqtOxYBrtgzDQhq_oohhlXD2nc,8718
|
|
91
91
|
plotnine/geoms/geom_errorbar.py,sha256=jpCuQ8CE2RKfRR8Aw_3s473HXrOk-WPOl46n4oC-8UI,2199
|
|
92
92
|
plotnine/geoms/geom_errorbarh.py,sha256=mgRo8KngGyKVSPPF8vUYlzdslBJEIe9QJC--DlWL5t4,2213
|
|
93
93
|
plotnine/geoms/geom_freqpoly.py,sha256=lsr1dwZyR6gUbzl5SNJ5yYklsWGjkqYYAe3Mb8AWynk,339
|
|
94
|
-
plotnine/geoms/geom_histogram.py,sha256=
|
|
94
|
+
plotnine/geoms/geom_histogram.py,sha256=rHtwpW2HNnxSwAXmZNoAVuB7qJsbETkrnCxFR7nJqqQ,367
|
|
95
95
|
plotnine/geoms/geom_hline.py,sha256=uMYBDkfshx2tskuZpjvo9N9Ztqt7AUxuaYFhMxeHi5c,2481
|
|
96
96
|
plotnine/geoms/geom_jitter.py,sha256=mJCLt2SoZN_tx_3XS8oF5JojtL2m5HO1bEqdN-JEPUg,2291
|
|
97
97
|
plotnine/geoms/geom_label.py,sha256=lPxmDlS6VgEHqD3Ac1Q-Zxs75JcnduoXjJ_D1AzzWew,2835
|
|
@@ -100,24 +100,24 @@ plotnine/geoms/geom_linerange.py,sha256=dkgQ28YZfjyMb_y8s0wfcAz5mHF7f7y_h1Den5wH
|
|
|
100
100
|
plotnine/geoms/geom_map.py,sha256=tvzFVNOtSOfof1NQFduB8SV143o2irNsQrM8BgYiEKU,9602
|
|
101
101
|
plotnine/geoms/geom_path.py,sha256=nDrlmqPn869vyUF4RYbLKkbQka14SWJu9pqCN-cdKbQ,17106
|
|
102
102
|
plotnine/geoms/geom_point.py,sha256=KWM511zxIpKQzxI_NJpFqEszNWg5E7iHZJylKvvaK2c,4607
|
|
103
|
-
plotnine/geoms/geom_pointdensity.py,sha256=
|
|
103
|
+
plotnine/geoms/geom_pointdensity.py,sha256=mVVy4IvWrQJroBv9Dw4dNfmI_NTxJNxReJwtXyb1ONU,468
|
|
104
104
|
plotnine/geoms/geom_pointrange.py,sha256=C746lDJfRe4M5k8sobEjaer_1IE60ZqIgs2cvq6Q3bY,2607
|
|
105
105
|
plotnine/geoms/geom_polygon.py,sha256=c6Ba9mvCMvY11FZfZATF78byuL7JMCqx3DEMMJBNfTE,4149
|
|
106
|
-
plotnine/geoms/geom_qq.py,sha256=
|
|
107
|
-
plotnine/geoms/geom_qq_line.py,sha256=
|
|
108
|
-
plotnine/geoms/geom_quantile.py,sha256=
|
|
106
|
+
plotnine/geoms/geom_qq.py,sha256=CbNHewv2YM6VX3J9ysCP26E89lzH2MxUcYYsaaneKk4,380
|
|
107
|
+
plotnine/geoms/geom_qq_line.py,sha256=tn4M8whkIjMLLbz18jrtAFyR5OkGrNkOY2ZQty-d3tY,428
|
|
108
|
+
plotnine/geoms/geom_quantile.py,sha256=tS6zTO10DBdVz-lGU_E3JO-JI3VYIymWjZYlEkZK3sE,898
|
|
109
109
|
plotnine/geoms/geom_raster.py,sha256=eBhTkb_ybxuCKSExEm0Np5UAyBmj9qdDey8Ui9Xb1gs,6266
|
|
110
110
|
plotnine/geoms/geom_rect.py,sha256=dGOAkVXf5NSJgIbaVezg1ac78GqimElB9Ua0L_SH_YM,3717
|
|
111
111
|
plotnine/geoms/geom_ribbon.py,sha256=af9uElWaJQSc4taTLZ7ZDzng2Zw4IrIfNPrus4OuTmM,5771
|
|
112
112
|
plotnine/geoms/geom_rug.py,sha256=2Sdarf5z3w4JbklVUk7JykWdbBNKaT0Wl5NMBl4LqT4,3520
|
|
113
113
|
plotnine/geoms/geom_segment.py,sha256=v63MoKlK4aNengCXYdPeQrcBIgBCis8QobpF3CJOf5U,3052
|
|
114
|
-
plotnine/geoms/geom_sina.py,sha256=
|
|
115
|
-
plotnine/geoms/geom_smooth.py,sha256=
|
|
114
|
+
plotnine/geoms/geom_sina.py,sha256=G1K8TCC_de5VFHHFCOICVDZ71Dy-raRZiZt6y1Z0ktw,950
|
|
115
|
+
plotnine/geoms/geom_smooth.py,sha256=7L7HdJCU2a63KGRs1RQnZ-c96Z63e-C7Znm43aWR3kE,3635
|
|
116
116
|
plotnine/geoms/geom_spoke.py,sha256=s-kug0H-YGhyjso9W43XvzJf9-g6inh8zzuSFeXzSaU,977
|
|
117
117
|
plotnine/geoms/geom_step.py,sha256=tTohADfGyC3M4zCzxLUhzkA2XsHBeH0eaWq-m2DQEQQ,2371
|
|
118
118
|
plotnine/geoms/geom_text.py,sha256=fOGjIZL5ajB78su5lUGBo_uPa-NvTCaPo640oEbJE_4,11884
|
|
119
119
|
plotnine/geoms/geom_tile.py,sha256=3x9BSxaSr-ys6N5R2wY8B9fNiyV9vMdoXbjIDqHy_ng,1431
|
|
120
|
-
plotnine/geoms/geom_violin.py,sha256=
|
|
120
|
+
plotnine/geoms/geom_violin.py,sha256=ftrbmzvSEANPCdj7lgi7_HAoVHrGt3rI7z0rHL0iZ3Y,7214
|
|
121
121
|
plotnine/geoms/geom_vline.py,sha256=NTrKu5wpcoiWRtcVVY5Q3xQEBmp1q4DgBgHzwTbfmOA,3387
|
|
122
122
|
plotnine/guides/__init__.py,sha256=ulI-mDhtq3jAQEAqPv8clrn3UHGFOu3xRuO7jXlq-LY,201
|
|
123
123
|
plotnine/guides/guide.py,sha256=CHz0SnfrSqKCl4aHmkM2r5YFITsa1XVDcaglW3nuIt4,8149
|
|
@@ -166,29 +166,29 @@ plotnine/stats/density.py,sha256=TQihwduejW5I5oZ8GdWI_U_n-5N49SfMShm3OtlDhW8,637
|
|
|
166
166
|
plotnine/stats/distributions.py,sha256=pskpWUFcyrLR6AYeZAciRH0Cb267ME3G2mvm79xsgMc,1178
|
|
167
167
|
plotnine/stats/smoothers.py,sha256=6zRX55yXuUjZ-VDDSJWR1uH_4U_rQWGWMefPFHVCEGQ,17825
|
|
168
168
|
plotnine/stats/stat.py,sha256=Q7vjY_QV5pPR1guLVFZbQx9x1vtf7xrCadcUdq4UxPc,11532
|
|
169
|
-
plotnine/stats/stat_bin.py,sha256=
|
|
170
|
-
plotnine/stats/stat_bin_2d.py,sha256=
|
|
171
|
-
plotnine/stats/stat_bindot.py,sha256=
|
|
172
|
-
plotnine/stats/stat_boxplot.py,sha256=
|
|
173
|
-
plotnine/stats/stat_count.py,sha256=
|
|
174
|
-
plotnine/stats/stat_density.py,sha256=
|
|
175
|
-
plotnine/stats/stat_density_2d.py,sha256=
|
|
176
|
-
plotnine/stats/stat_ecdf.py,sha256=
|
|
177
|
-
plotnine/stats/stat_ellipse.py,sha256=
|
|
178
|
-
plotnine/stats/stat_function.py,sha256=
|
|
179
|
-
plotnine/stats/stat_hull.py,sha256=
|
|
180
|
-
plotnine/stats/stat_identity.py,sha256=
|
|
181
|
-
plotnine/stats/stat_pointdensity.py,sha256=
|
|
182
|
-
plotnine/stats/stat_qq.py,sha256=
|
|
183
|
-
plotnine/stats/stat_qq_line.py,sha256=
|
|
184
|
-
plotnine/stats/stat_quantile.py,sha256=
|
|
185
|
-
plotnine/stats/stat_sina.py,sha256=
|
|
186
|
-
plotnine/stats/stat_smooth.py,sha256=
|
|
187
|
-
plotnine/stats/stat_sum.py,sha256=
|
|
188
|
-
plotnine/stats/stat_summary.py,sha256=
|
|
189
|
-
plotnine/stats/stat_summary_bin.py,sha256=
|
|
190
|
-
plotnine/stats/stat_unique.py,sha256=
|
|
191
|
-
plotnine/stats/stat_ydensity.py,sha256=
|
|
169
|
+
plotnine/stats/stat_bin.py,sha256=BwYn4wktVQQ3_4blRIE7kOO38e5rv_yWPVf3p2Gi9WU,4623
|
|
170
|
+
plotnine/stats/stat_bin_2d.py,sha256=tbdgGDcoPuSXn9cJ9ZJ5MWu6o3Gpp31pcBgBPR9l9qo,5305
|
|
171
|
+
plotnine/stats/stat_bindot.py,sha256=AWmMsI9Pt2IQ467Y2mqYAVw2klHu4xQFC8O7ae6Cfpc,10263
|
|
172
|
+
plotnine/stats/stat_boxplot.py,sha256=6dpiUz83edy4eKc1DXgqA4OgoHkjzW14jhEjawAee74,6034
|
|
173
|
+
plotnine/stats/stat_count.py,sha256=AcH2jHbQy1O1BWSwy2k6Lw9RsJJ0uOHRkva7YBMcaik,1994
|
|
174
|
+
plotnine/stats/stat_density.py,sha256=d1AKQbhB_MOKI7Kljbih2mmlr7jpjjN5Drgs2iOjn5s,10384
|
|
175
|
+
plotnine/stats/stat_density_2d.py,sha256=SBYzK7ISTa4-HiQnsMaPdU7gq8ZXzqaUjzm6rb2VnwE,5714
|
|
176
|
+
plotnine/stats/stat_ecdf.py,sha256=lXPzaXe2O-b7oPbB1C1zJXewwICblX2HqoYIsDUcIF8,1668
|
|
177
|
+
plotnine/stats/stat_ellipse.py,sha256=u4Qio39Mbc4iFJzo-4d6DqbdyLK6_gNtwEvxRhgNNDk,7658
|
|
178
|
+
plotnine/stats/stat_function.py,sha256=41ePVGdonZnQOlrsZ3E_Yy0ecOzzS2j-kVCmbUZfBQs,3211
|
|
179
|
+
plotnine/stats/stat_hull.py,sha256=0OqDv-4behPqg8SpFo1btdIICGzHuzVeRMzaO8dQ94c,1542
|
|
180
|
+
plotnine/stats/stat_identity.py,sha256=xptxspcq2XYeDGqH8jNUI9so35NG9glRrxaDS6OzEh8,447
|
|
181
|
+
plotnine/stats/stat_pointdensity.py,sha256=JMXvO1wBBFntAdMgnDPxVPnt8jDLrgdhInh05tr2I0k,2198
|
|
182
|
+
plotnine/stats/stat_qq.py,sha256=cEyIYK1oX99tPh4m31B4z5rq3eZPEbZ8pnAuz9gY7xA,3457
|
|
183
|
+
plotnine/stats/stat_qq_line.py,sha256=i5HVjl2tFu1k7TvpAfm3b7AWE-UDyWvReP0WpzWT1q0,3524
|
|
184
|
+
plotnine/stats/stat_quantile.py,sha256=6_S6JAHtnoI7-XCkzmqy80fNnI4V1mM9cfEPPWp6nHI,2491
|
|
185
|
+
plotnine/stats/stat_sina.py,sha256=fiIbfozux0TPLfo5skBXAJHEgrX37KC1Ju02d99oMQI,9431
|
|
186
|
+
plotnine/stats/stat_smooth.py,sha256=f5g7TtIcV847uGFdM2-udNZu2nH9HFA5LOryOwbfGyM,8039
|
|
187
|
+
plotnine/stats/stat_sum.py,sha256=RRqcCLrc8cU2txShukChog0AVPsunA8m0oA7CweAj4U,1718
|
|
188
|
+
plotnine/stats/stat_summary.py,sha256=5o9U-ZeJfD1b1DBrrHD6rQ4QuDO3QERgRcQGZVvrmhM,9298
|
|
189
|
+
plotnine/stats/stat_summary_bin.py,sha256=whYcoXzrgZowdt_R9lq2FY0lNQrywFXg540ohu3TzBA,5739
|
|
190
|
+
plotnine/stats/stat_unique.py,sha256=1SdLNm2CjhjONAwo714uB3tc5KX7vSDHAi1geJdWtDY,449
|
|
191
|
+
plotnine/stats/stat_ydensity.py,sha256=_OVYc-QELPKMc24BvQaA9cPkfEoC_hW2teeo8yL8iao,5661
|
|
192
192
|
plotnine/themes/__init__.py,sha256=tEKIF4gYmOF2Z1-_UDdK8zh41dLl-61HUGIhOQvki6I,916
|
|
193
193
|
plotnine/themes/seaborn_rcmod.py,sha256=Pi-UX5LyH9teSuteYpqPOEnfLgKUz01LnKDyDA7Aois,15502
|
|
194
194
|
plotnine/themes/targets.py,sha256=MjBRWWRgsLXXM_PJffPsV4DttQJB_m11jdD837BteuU,1686
|
|
@@ -204,7 +204,7 @@ plotnine/themes/theme_matplotlib.py,sha256=3JPOGhFz6Nul2s03Djd254RPtHtcQ0fsi3Hc9
|
|
|
204
204
|
plotnine/themes/theme_minimal.py,sha256=YhkKNA48jP2OLa8-kHMfXFEFRjcsfWBLMID2orITrmo,884
|
|
205
205
|
plotnine/themes/theme_seaborn.py,sha256=8giJh8QvkMJ8pr_XXHPDMfkysoI2_yr0vJhz48_sQGI,4319
|
|
206
206
|
plotnine/themes/theme_tufte.py,sha256=qUOrZhQyfJgc0fmy8Es7tT7aYqUSzCjvkP7-dBilwHE,1926
|
|
207
|
-
plotnine/themes/theme_void.py,sha256=
|
|
207
|
+
plotnine/themes/theme_void.py,sha256=itsmb9pWCZAwgccw_zHDjQRfhRRbAiMNo4zZ1zeBgIU,3223
|
|
208
208
|
plotnine/themes/theme_xkcd.py,sha256=5MOdj_H23Kr_jbDnepmq1DQDbn8-TfUmtzYBZTb4RB4,2207
|
|
209
209
|
plotnine/themes/themeable.py,sha256=Px91yh5pft24mC-4uUFLYpU-45iX6cE64j3t-a20wug,71744
|
|
210
210
|
plotnine/themes/elements/__init__.py,sha256=xV1la_mTv1BQ3zQp7ZGVGPdV6KohvEVhKAi1uPTeAs0,327
|
|
@@ -214,8 +214,8 @@ plotnine/themes/elements/element_line.py,sha256=yZvj9B3M2a7a8o2J0n-q0uviNv34PtJV
|
|
|
214
214
|
plotnine/themes/elements/element_rect.py,sha256=w5cLH-Sr4cTRXVdkRiu8kBqFt3TXHhIb1MUITfi89gE,1767
|
|
215
215
|
plotnine/themes/elements/element_text.py,sha256=8yhwBa9s9JKCtBcqcBNybbCGK6ieDnZv4SHiC4Sy2qc,6255
|
|
216
216
|
plotnine/themes/elements/margin.py,sha256=jMHe-UKHHer_VYwAVDC-Tz2-AP_4YDuXPTWAuacoqgU,4080
|
|
217
|
-
plotnine-0.15.
|
|
218
|
-
plotnine-0.15.
|
|
219
|
-
plotnine-0.15.
|
|
220
|
-
plotnine-0.15.
|
|
221
|
-
plotnine-0.15.
|
|
217
|
+
plotnine-0.15.0a7.dist-info/licenses/LICENSE,sha256=GY4tQiUd17Tq3wWR42Zs9MRTFOTf6ahIXhZTcwAdOeU,1082
|
|
218
|
+
plotnine-0.15.0a7.dist-info/METADATA,sha256=Dh5LX9Yv64P7G6-lf_4MCRXKqfZNohHHtWJ3NWSvu10,9407
|
|
219
|
+
plotnine-0.15.0a7.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
220
|
+
plotnine-0.15.0a7.dist-info/top_level.txt,sha256=t340Mbko1ZbmvYPkQ81dIiPHcaQdTUszYz-bWUpr8ys,9
|
|
221
|
+
plotnine-0.15.0a7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|