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.
Files changed (51) hide show
  1. plotnine/_mpl/layout_manager/_layout_items.py +6 -2
  2. plotnine/_mpl/layout_manager/_layout_tree.py +217 -56
  3. plotnine/_mpl/layout_manager/_spaces.py +98 -28
  4. plotnine/_mpl/text.py +1 -7
  5. plotnine/composition/_arrange.py +16 -1
  6. plotnine/composition/_beside.py +7 -0
  7. plotnine/composition/_plot_spacer.py +6 -0
  8. plotnine/composition/_stack.py +7 -0
  9. plotnine/geoms/geom_bar.py +1 -0
  10. plotnine/geoms/geom_bin_2d.py +4 -0
  11. plotnine/geoms/geom_boxplot.py +4 -0
  12. plotnine/geoms/geom_count.py +4 -0
  13. plotnine/geoms/geom_density_2d.py +4 -0
  14. plotnine/geoms/geom_dotplot.py +1 -1
  15. plotnine/geoms/geom_histogram.py +1 -1
  16. plotnine/geoms/geom_pointdensity.py +4 -0
  17. plotnine/geoms/geom_qq.py +4 -0
  18. plotnine/geoms/geom_qq_line.py +4 -0
  19. plotnine/geoms/geom_quantile.py +4 -0
  20. plotnine/geoms/geom_sina.py +1 -1
  21. plotnine/geoms/geom_smooth.py +4 -0
  22. plotnine/geoms/geom_violin.py +4 -0
  23. plotnine/stats/stat_bin.py +4 -0
  24. plotnine/stats/stat_bin_2d.py +4 -0
  25. plotnine/stats/stat_bindot.py +1 -0
  26. plotnine/stats/stat_boxplot.py +1 -1
  27. plotnine/stats/stat_count.py +1 -0
  28. plotnine/stats/stat_density.py +1 -1
  29. plotnine/stats/stat_density_2d.py +1 -0
  30. plotnine/stats/stat_ecdf.py +1 -1
  31. plotnine/stats/stat_ellipse.py +4 -0
  32. plotnine/stats/stat_function.py +4 -0
  33. plotnine/stats/stat_hull.py +4 -0
  34. plotnine/stats/stat_identity.py +4 -0
  35. plotnine/stats/stat_pointdensity.py +1 -0
  36. plotnine/stats/stat_qq.py +1 -0
  37. plotnine/stats/stat_qq_line.py +1 -0
  38. plotnine/stats/stat_quantile.py +1 -1
  39. plotnine/stats/stat_sina.py +1 -1
  40. plotnine/stats/stat_smooth.py +1 -0
  41. plotnine/stats/stat_sum.py +4 -0
  42. plotnine/stats/stat_summary.py +1 -1
  43. plotnine/stats/stat_summary_bin.py +1 -1
  44. plotnine/stats/stat_unique.py +4 -0
  45. plotnine/stats/stat_ydensity.py +1 -1
  46. plotnine/themes/theme_void.py +1 -7
  47. {plotnine-0.15.0a6.dist-info → plotnine-0.15.0a7.dist-info}/METADATA +1 -1
  48. {plotnine-0.15.0a6.dist-info → plotnine-0.15.0a7.dist-info}/RECORD +51 -51
  49. {plotnine-0.15.0a6.dist-info → plotnine-0.15.0a7.dist-info}/WHEEL +0 -0
  50. {plotnine-0.15.0a6.dist-info → plotnine-0.15.0a7.dist-info}/licenses/LICENSE +0 -0
  51. {plotnine-0.15.0a6.dist-info → plotnine-0.15.0a7.dist-info}/top_level.txt +0 -0
@@ -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 = """
@@ -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 = """
@@ -12,6 +12,10 @@ class stat_identity(stat):
12
12
  Parameters
13
13
  ----------
14
14
  {common_parameters}
15
+
16
+ See Also
17
+ --------
18
+ plotnine.geom_point : The default `geom` for this `stat`.
15
19
  """
16
20
 
17
21
  DEFAULT_PARAMS = {"geom": "point", "position": "identity", "na_rm": False}
@@ -24,6 +24,7 @@ class stat_pointdensity(stat):
24
24
 
25
25
  See Also
26
26
  --------
27
+ plotnine.geom_density_2d : The default `geom` for this `stat`.
27
28
  statsmodels.nonparametric.kde.KDEMultivariate
28
29
  scipy.stats.gaussian_kde
29
30
  sklearn.neighbors.KernelDensity
plotnine/stats/stat_qq.py CHANGED
@@ -47,6 +47,7 @@ class stat_qq(stat):
47
47
 
48
48
  See Also
49
49
  --------
50
+ plotnine.geom_qq : The default `geom` for this `stat`.
50
51
  scipy.stats.mstats.plotting_positions : Uses `alpha_beta`
51
52
  to calculate the quantiles.
52
53
  """
@@ -41,6 +41,7 @@ class stat_qq_line(stat):
41
41
 
42
42
  See Also
43
43
  --------
44
+ plotnine.geom_qq_line : The default `geom` for this `stat`.
44
45
  scipy.stats.mstats.plotting_positions : Uses `alpha_beta`
45
46
  to calculate the quantiles.
46
47
  """
@@ -29,8 +29,8 @@ class stat_quantile(stat):
29
29
 
30
30
  See Also
31
31
  --------
32
+ plotnine.geom_quantile : The default `geom` for this `stat`.
32
33
  statsmodels.regression.quantile_regression.QuantReg
33
- plotnine.geom_quantile
34
34
  """
35
35
 
36
36
  _aesthetics_doc = """
@@ -69,7 +69,7 @@ class stat_sina(stat):
69
69
 
70
70
  See Also
71
71
  --------
72
- plotnine.geom_sina
72
+ plotnine.geom_sina : The default `geom` for this `stat`.
73
73
  """
74
74
 
75
75
  _aesthetics_doc = """
@@ -106,6 +106,7 @@ class stat_smooth(stat):
106
106
 
107
107
  See Also
108
108
  --------
109
+ plotnine.geom_smooth : The default `geom` for this `stat`.
109
110
  statsmodels.regression.linear_model.OLS
110
111
  statsmodels.regression.linear_model.WLS
111
112
  statsmodels.robust.robust_linear_model.RLM
@@ -17,6 +17,10 @@ class stat_sum(stat):
17
17
  Parameters
18
18
  ----------
19
19
  {common_parameters}
20
+
21
+ See Also
22
+ --------
23
+ plotnine.geom_point : The default `geom` for this `stat`.
20
24
  """
21
25
 
22
26
  _aesthetics_doc = """
@@ -247,7 +247,7 @@ class stat_summary(stat):
247
247
 
248
248
  See Also
249
249
  --------
250
- plotnine.geom_pointrange
250
+ plotnine.geom_pointrange : The default `geom` for this `stat`.
251
251
  """
252
252
 
253
253
  _aesthetics_doc = """
@@ -63,7 +63,7 @@ class stat_summary_bin(stat):
63
63
 
64
64
  See Also
65
65
  --------
66
- plotnine.geom_pointrange
66
+ plotnine.geom_pointrange : The default `geom` for this `stat`.
67
67
  """
68
68
 
69
69
  _aesthetics_doc = """
@@ -12,6 +12,10 @@ class stat_unique(stat):
12
12
  Parameters
13
13
  ----------
14
14
  {common_parameters}
15
+
16
+ See Also
17
+ --------
18
+ plotnine.geom_point : The default `geom` for this `stat`.
15
19
  """
16
20
 
17
21
  DEFAULT_PARAMS = {"geom": "point", "position": "identity", "na_rm": False}
@@ -69,7 +69,7 @@ class stat_ydensity(stat):
69
69
 
70
70
  See Also
71
71
  --------
72
- plotnine.geom_violin
72
+ plotnine.geom_violin : The default `geom` for this `stat`.
73
73
  statsmodels.nonparametric.kde.KDEUnivariate
74
74
  statsmodels.nonparametric.kde.KDEUnivariate.fit
75
75
  """
@@ -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
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: plotnine
3
- Version: 0.15.0a6
3
+ Version: 0.15.0a7
4
4
  Summary: A Grammar of Graphics for Python
5
5
  Author-email: Hassan Kibirige <has2k1@gmail.com>
6
6
  License: The MIT License (MIT)
@@ -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=3PL9Uq24QOUyyxS8f-i174dLmNYZmnwkGcWSoNkHh_g,6778
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=3XRBl7xEdBKdhrexRmnVe7k919po6nkyE0q5Hx7j5cQ,29642
26
- plotnine/_mpl/layout_manager/_layout_tree.py,sha256=yFNt7fsv2VhEt3261OfLP7kgPYNd_npLoNDLp_QJi3Y,26445
27
- plotnine/_mpl/layout_manager/_spaces.py,sha256=ahBpKt-q1kVOTGiGliwl_DNB6pTEekAzA_7-GXwFlBk,35789
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=-ZPe3JydfVAvVYiTI0W7aJaUySonpE2o76aKaxfjS84,11040
37
- plotnine/composition/_beside.py,sha256=DAMZfIrOfz4mQSqro22GpooaCnm8ns6lG6vIp8SnAtg,993
38
- plotnine/composition/_plot_spacer.py,sha256=gjAymmjOVZwwT0Y01MqHA3tAEDAr0mcWSX07npzo1Hw,1298
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=TXvy8FQ7CNNzntkjz4h4R_6-LxYSNFF5ri9E82dv17Q,1007
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=SnqS4hPTfqXzdPh1U-kNuBg0LNX9_tQC9OKhIlB7cy0,1732
82
- plotnine/geoms/geom_bin_2d.py,sha256=IhlpR62o4Y6qe-tNUywOMjhseJNPV3c-x2QB6D11EPU,574
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=OISXd3CCuH06sKqOB8xlfUPrwUX_FUKQauSqE7L-PhQ,9778
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=4quwvXQSrdDdlQfaSRmkBzpEP6qCRPB9SS6_5UV037M,511
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=xEtQTTQnBzOs5PMDViZNQoSiXduU93SGmTN0u77RPj4,400
90
- plotnine/geoms/geom_dotplot.py,sha256=ZHmRCEGS3Nv2tiNwALBC7ewBg1prcb_FOxAImTGKP3c,8680
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=JnqHJb7HISQKnH2XwW6JOB8g462yGH1nMMYxbtwvqtY,329
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=TKaxAUPwdrVMw0MVYe14apBsRfW_5_zXFLSlOS60Zlw,372
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=uimpCvBrJhMscglVzI7cUAnAC3ZRs7nqXyGilq1ipkw,294
107
- plotnine/geoms/geom_qq_line.py,sha256=i0L9if-JxTr2heYUpIqV_cZ4qMiB7Om6EOurR76nFhg,337
108
- plotnine/geoms/geom_quantile.py,sha256=rcYmyO062IFASBoYZEE31KtHKSVkWNwF-upbBp9AgAU,806
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=JspG0o_K4px0KKZVaVeuBnk0iGjVJnB9PGjt8UAf08I,912
115
- plotnine/geoms/geom_smooth.py,sha256=8jSxQFTdoo7RmeTrGl2j-iE6lfydUPitz-dKvxKk0Kw,3545
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=sHEcLGIqQ1FgTHUZDKOU3J9mlMMBJinjTrc3BmRLjGU,7122
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=3wzROpzDGQIe3N15aI7tzYJXBfxPxTjY-pGmP5yb620,4535
170
- plotnine/stats/stat_bin_2d.py,sha256=ANM3IcGRN4IKMtmNuJZLnCUWdC7tQYAAg75gVe59B58,5217
171
- plotnine/stats/stat_bindot.py,sha256=FS-Axqhb-nMR9HK77BD-ElDHpsS8NaJKLMIff4-lDSU,10199
172
- plotnine/stats/stat_boxplot.py,sha256=5PvTTig5kAZQjenYL-158tjnzRnRUcnJpJL5qOdv9WI,5997
173
- plotnine/stats/stat_count.py,sha256=P560-9Lm6FWUvL5bGASIBxY3vQnbcZrU4CYlBdZpE3Y,1928
174
- plotnine/stats/stat_density.py,sha256=1TyOIiAaOaZesPcqIsnaVk14by0cKu6b7d7r-a5ZZSI,10346
175
- plotnine/stats/stat_density_2d.py,sha256=XSyE78IJwLLH4G5H7UD7ZrmknmaGCEMUHwvwNYmYVLQ,5647
176
- plotnine/stats/stat_ecdf.py,sha256=BdeisCWzDnuPMc3vBgZqpDsXCKy8ZfoSRwFPOQlgksM,1630
177
- plotnine/stats/stat_ellipse.py,sha256=NMr22TQMfVDZejIKvw1UWcB1NJptTlg6-qRf8d8EzJE,7570
178
- plotnine/stats/stat_function.py,sha256=AcP_wUu063fA8RAjc7AoFuVQmLdlsuEvP6m8AuTm9HY,3123
179
- plotnine/stats/stat_hull.py,sha256=WhbAkukGd2wEsmwoTXOPZTcBKggAL3hKml6AhvFVkQg,1454
180
- plotnine/stats/stat_identity.py,sha256=Bb9kMMK0u5xLOZytJgL-4xdnvDRRWxRoqSwDN2gJCSI,358
181
- plotnine/stats/stat_pointdensity.py,sha256=1vYecHae0m3USERh3s9OKY0ZY-qpgaD9q9I8MOShna0,2131
182
- plotnine/stats/stat_qq.py,sha256=KkrkkBhcov9y87VSSbrZQMvyMvJf5Ojj992caVCE2BI,3398
183
- plotnine/stats/stat_qq_line.py,sha256=3stKRIGFf_8P-0ugfl6rWELqUgAKIl6NsFhkPurOeMg,3460
184
- plotnine/stats/stat_quantile.py,sha256=ATCr3hq7k-QyrALQgjhpP8cEtv_Rk0UTsZA4rTlKsf8,2453
185
- plotnine/stats/stat_sina.py,sha256=_sT7FveukEv8KwH59nLiszvFLAEz-TkpBC_Ak1cIC_I,9393
186
- plotnine/stats/stat_smooth.py,sha256=o_tqdiB5d3AanLfpUxUluwGZboPRwM8RWXqNMbj18NY,7976
187
- plotnine/stats/stat_sum.py,sha256=xSgPvfPNCpCgXO7eUy7YSe1NUfjnqQ3dvCetJlRXAMY,1629
188
- plotnine/stats/stat_summary.py,sha256=UG7TmpdYnrMLdcfwECD8aIQ4xloNSHGIqgGihiwzNS0,9260
189
- plotnine/stats/stat_summary_bin.py,sha256=FYtkw8NG2Mlo-U_gO3Z944Qddpq619kEm9tAzK4sNj8,5701
190
- plotnine/stats/stat_unique.py,sha256=qnpcbmux0SRxzRxCTtQvh8dBtSxFkHCTSZKiLaFRjkg,360
191
- plotnine/stats/stat_ydensity.py,sha256=eX6sucANNLDDc_DnFGTzEvUqKWoyX04ILkv4PeVT01Q,5623
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=gYXr367zYNhvt_NXlDUx0rBPUYJa1F6adnANn5HEx5A,3407
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.0a6.dist-info/licenses/LICENSE,sha256=GY4tQiUd17Tq3wWR42Zs9MRTFOTf6ahIXhZTcwAdOeU,1082
218
- plotnine-0.15.0a6.dist-info/METADATA,sha256=FDNoeUumEK4SXTfxin727GT3RL94ky46x9L5e5fNQ-g,9407
219
- plotnine-0.15.0a6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
220
- plotnine-0.15.0a6.dist-info/top_level.txt,sha256=t340Mbko1ZbmvYPkQ81dIiPHcaQdTUszYz-bWUpr8ys,9
221
- plotnine-0.15.0a6.dist-info/RECORD,,
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,,