plotnine 0.15.0a2__py3-none-any.whl → 0.15.0a4__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 (70) hide show
  1. plotnine/_mpl/layout_manager/_layout_tree.py +16 -6
  2. plotnine/_utils/__init__.py +7 -103
  3. plotnine/doctools.py +3 -3
  4. plotnine/geoms/annotate.py +10 -10
  5. plotnine/geoms/annotation_logticks.py +5 -8
  6. plotnine/geoms/annotation_stripes.py +4 -6
  7. plotnine/geoms/geom.py +41 -20
  8. plotnine/geoms/geom_abline.py +3 -2
  9. plotnine/geoms/geom_blank.py +0 -3
  10. plotnine/geoms/geom_boxplot.py +4 -4
  11. plotnine/geoms/geom_crossbar.py +3 -3
  12. plotnine/geoms/geom_dotplot.py +1 -1
  13. plotnine/geoms/geom_errorbar.py +2 -2
  14. plotnine/geoms/geom_errorbarh.py +2 -2
  15. plotnine/geoms/geom_hline.py +3 -2
  16. plotnine/geoms/geom_linerange.py +2 -2
  17. plotnine/geoms/geom_map.py +3 -3
  18. plotnine/geoms/geom_path.py +10 -11
  19. plotnine/geoms/geom_point.py +4 -5
  20. plotnine/geoms/geom_pointrange.py +3 -5
  21. plotnine/geoms/geom_polygon.py +2 -3
  22. plotnine/geoms/geom_raster.py +4 -5
  23. plotnine/geoms/geom_rect.py +3 -4
  24. plotnine/geoms/geom_ribbon.py +7 -7
  25. plotnine/geoms/geom_rug.py +1 -1
  26. plotnine/geoms/geom_segment.py +2 -2
  27. plotnine/geoms/geom_smooth.py +3 -3
  28. plotnine/geoms/geom_step.py +2 -2
  29. plotnine/geoms/geom_text.py +2 -3
  30. plotnine/geoms/geom_violin.py +4 -5
  31. plotnine/geoms/geom_vline.py +3 -2
  32. plotnine/guides/guides.py +1 -1
  33. plotnine/layer.py +20 -12
  34. plotnine/mapping/_eval_environment.py +1 -1
  35. plotnine/mapping/aes.py +75 -45
  36. plotnine/scales/scale_color.py +46 -14
  37. plotnine/scales/scale_continuous.py +4 -3
  38. plotnine/scales/scale_datetime.py +28 -14
  39. plotnine/scales/scale_discrete.py +1 -1
  40. plotnine/scales/scale_xy.py +2 -2
  41. plotnine/stats/smoothers.py +19 -19
  42. plotnine/stats/stat.py +15 -25
  43. plotnine/stats/stat_bin.py +2 -5
  44. plotnine/stats/stat_bin_2d.py +7 -9
  45. plotnine/stats/stat_bindot.py +5 -8
  46. plotnine/stats/stat_boxplot.py +5 -5
  47. plotnine/stats/stat_count.py +5 -9
  48. plotnine/stats/stat_density.py +5 -8
  49. plotnine/stats/stat_density_2d.py +11 -8
  50. plotnine/stats/stat_ecdf.py +6 -5
  51. plotnine/stats/stat_ellipse.py +5 -6
  52. plotnine/stats/stat_function.py +6 -8
  53. plotnine/stats/stat_hull.py +2 -3
  54. plotnine/stats/stat_identity.py +1 -2
  55. plotnine/stats/stat_pointdensity.py +4 -7
  56. plotnine/stats/stat_qq.py +45 -20
  57. plotnine/stats/stat_qq_line.py +15 -11
  58. plotnine/stats/stat_quantile.py +6 -7
  59. plotnine/stats/stat_sina.py +12 -14
  60. plotnine/stats/stat_smooth.py +7 -10
  61. plotnine/stats/stat_sum.py +1 -2
  62. plotnine/stats/stat_summary.py +6 -9
  63. plotnine/stats/stat_summary_bin.py +10 -13
  64. plotnine/stats/stat_unique.py +1 -2
  65. plotnine/stats/stat_ydensity.py +7 -10
  66. {plotnine-0.15.0a2.dist-info → plotnine-0.15.0a4.dist-info}/METADATA +4 -4
  67. {plotnine-0.15.0a2.dist-info → plotnine-0.15.0a4.dist-info}/RECORD +70 -70
  68. {plotnine-0.15.0a2.dist-info → plotnine-0.15.0a4.dist-info}/WHEEL +1 -1
  69. {plotnine-0.15.0a2.dist-info → plotnine-0.15.0a4.dist-info}/licenses/LICENSE +0 -0
  70. {plotnine-0.15.0a2.dist-info → plotnine-0.15.0a4.dist-info}/top_level.txt +0 -0
@@ -123,21 +123,18 @@ class stat_summary_bin(stat):
123
123
 
124
124
  self.params["fun_args"]["random_state"] = random_state
125
125
 
126
- return self.params
127
-
128
- @classmethod
129
- def compute_group(cls, data, scales, **params):
130
- bins = params["bins"]
131
- breaks = params["breaks"]
132
- binwidth = params["binwidth"]
133
- boundary = params["boundary"]
126
+ def compute_group(self, data, scales):
127
+ bins = self.params["bins"]
128
+ breaks = self.params["breaks"]
129
+ binwidth = self.params["binwidth"]
130
+ boundary = self.params["boundary"]
134
131
 
135
132
  func = make_summary_fun(
136
- params["fun_data"],
137
- params["fun_y"],
138
- params["fun_ymin"],
139
- params["fun_ymax"],
140
- params["fun_args"],
133
+ self.params["fun_data"],
134
+ self.params["fun_y"],
135
+ self.params["fun_ymin"],
136
+ self.params["fun_ymax"],
137
+ self.params["fun_args"],
141
138
  )
142
139
 
143
140
  breaks = fuzzybreaks(scales.x, breaks, boundary, binwidth, bins)
@@ -16,6 +16,5 @@ class stat_unique(stat):
16
16
 
17
17
  DEFAULT_PARAMS = {"geom": "point", "position": "identity", "na_rm": False}
18
18
 
19
- @classmethod
20
- def compute_panel(cls, data, scales, **params):
19
+ def compute_panel(self, data, scales):
21
20
  return data.drop_duplicates()
@@ -109,7 +109,7 @@ class stat_ydensity(stat):
109
109
  return data
110
110
 
111
111
  def setup_params(self, data):
112
- params = self.params.copy()
112
+ params = self.params
113
113
 
114
114
  valid_scale = ("area", "count", "width")
115
115
  if params["scale"] not in valid_scale:
@@ -141,11 +141,9 @@ class stat_ydensity(stat):
141
141
  for key in missing_params:
142
142
  params[key] = stat_density.DEFAULT_PARAMS[key]
143
143
 
144
- return params
145
-
146
- @classmethod
147
- def compute_panel(cls, data, scales, **params):
148
- data = super(cls, cls).compute_panel(data, scales, **params)
144
+ def compute_panel(self, data, scales):
145
+ params = self.params
146
+ data = super().compute_panel(data, scales)
149
147
 
150
148
  if not len(data):
151
149
  return data
@@ -167,20 +165,19 @@ class stat_ydensity(stat):
167
165
 
168
166
  return data
169
167
 
170
- @classmethod
171
- def compute_group(cls, data, scales, **params):
168
+ def compute_group(self, data, scales):
172
169
  n = len(data)
173
170
  if n == 0:
174
171
  return pd.DataFrame()
175
172
 
176
173
  weight = data.get("weight")
177
174
 
178
- if params["trim"]:
175
+ if self.params["trim"]:
179
176
  range_y = data["y"].min(), data["y"].max()
180
177
  else:
181
178
  range_y = scales.y.dimension()
182
179
 
183
- dens = compute_density(data["y"], weight, range_y, **params)
180
+ dens = compute_density(data["y"], weight, range_y, self.params)
184
181
 
185
182
  if not len(dens):
186
183
  return dens
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: plotnine
3
- Version: 0.15.0a2
3
+ Version: 0.15.0a4
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)
@@ -46,9 +46,9 @@ Description-Content-Type: text/markdown
46
46
  License-File: LICENSE
47
47
  Requires-Dist: matplotlib>=3.8.0
48
48
  Requires-Dist: pandas>=2.2.0
49
- Requires-Dist: mizani~=0.13.0
49
+ Requires-Dist: mizani~=0.14.0
50
50
  Requires-Dist: numpy>=1.23.5
51
- Requires-Dist: scipy>=1.8.0
51
+ Requires-Dist: scipy<1.16.0,>=1.8.0
52
52
  Requires-Dist: statsmodels>=0.14.0
53
53
  Provides-Extra: all
54
54
  Requires-Dist: plotnine[extra]; extra == "all"
@@ -82,7 +82,7 @@ Requires-Dist: twine; extra == "dev"
82
82
  Requires-Dist: plotnine[typing]; extra == "dev"
83
83
  Requires-Dist: pre-commit; extra == "dev"
84
84
  Provides-Extra: typing
85
- Requires-Dist: pyright==1.1.400; extra == "typing"
85
+ Requires-Dist: pyright==1.1.402; extra == "typing"
86
86
  Requires-Dist: ipython; extra == "typing"
87
87
  Requires-Dist: pandas-stubs; extra == "typing"
88
88
  Dynamic: license-file
@@ -1,12 +1,12 @@
1
1
  plotnine/__init__.py,sha256=HrJhd65bnny1t-TawUgvApVj4p-gDZ0ftpr2NKZeW_s,10316
2
2
  plotnine/animation.py,sha256=izJZ4Gy0cBHEBc8ehofsWSWOzZW8UEroy1Uvw86Igb0,7521
3
- plotnine/doctools.py,sha256=4qR1NCnnIG1Q-F0e2MeGzlhD9X0a00dOajtcl7m-yCQ,14546
3
+ plotnine/doctools.py,sha256=JBF55q1MX2fXYQcGDpVrGPdlKf5OiQ5gyTdWhnM_IzU,14558
4
4
  plotnine/exceptions.py,sha256=SgTxBHkV65HjGI3aFy2q1_lHP9HAdiuxVLN3U-PJWSQ,1616
5
5
  plotnine/ggplot.py,sha256=xFj9iWAyBvnhitCrpgdNonQIqqjBQ2aDgkqpvHbH364,24823
6
6
  plotnine/helpers.py,sha256=4R3KZmtGH46-kRNSGOA0JxZaLKBo0ge8Vnx1cDQ8_gI,966
7
7
  plotnine/iapi.py,sha256=jNLmUSoh5g9kNdhOoXSqNcqOdd2-6xdWAmst-YGU41U,9095
8
8
  plotnine/labels.py,sha256=3pOXth2Xma_qCqB_xXAGIkPQ9gcaUaaFEAsa5if1iR0,2830
9
- plotnine/layer.py,sha256=L_1jr8dVwZdeKCDbQg85DuPTPr1D2ifRNvRollJvlgI,16753
9
+ plotnine/layer.py,sha256=sUtzKTPnvkMuVFsNUFPkK9HUEcX7ohqv1EQV2KryS_c,16982
10
10
  plotnine/options.py,sha256=j3zXv4wc3J4nOI_TqJ5s_abuifodt_UN8MR8M4i8UVA,3108
11
11
  plotnine/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
12
  plotnine/qplot.py,sha256=BSAb4u5I7PaPGofkAgx7brdCNTjMZvC_TDGHVUZ35xM,7384
@@ -23,9 +23,9 @@ 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=ESUvbLAlZApFbBi6w7gZA7S4guS0Rmrj-us-gzYP2ZM,2809
25
25
  plotnine/_mpl/layout_manager/_layout_items.py,sha256=3XRBl7xEdBKdhrexRmnVe7k919po6nkyE0q5Hx7j5cQ,29642
26
- plotnine/_mpl/layout_manager/_layout_tree.py,sha256=hWmNZ2vGH3i3Fn4HSSnjmLi0gbSaSo-ShK233nIx-Yc,26223
26
+ plotnine/_mpl/layout_manager/_layout_tree.py,sha256=O6U78CYOjSwS4lt56YF3YiOCXdxmV_oy3lYS4gMmzSc,26447
27
27
  plotnine/_mpl/layout_manager/_spaces.py,sha256=ahBpKt-q1kVOTGiGliwl_DNB6pTEekAzA_7-GXwFlBk,35789
28
- plotnine/_utils/__init__.py,sha256=lEYll81XHu8gRslhN-OkrYTwQPjdjSQoWT6uhZZyRPc,33145
28
+ plotnine/_utils/__init__.py,sha256=czHi-uv4eIBCDf6td11bGA41PMXaJ5j7t-avx_JbYgY,30636
29
29
  plotnine/_utils/context.py,sha256=HPQy_uyNXdS0s9URD7ZePyuc5hFU2XrRBLDTqRDLJzY,1708
30
30
  plotnine/_utils/dev.py,sha256=0qgRbMhcd4dfuLuYxx0skocKAtfwHF02ntyILRBogbg,1629
31
31
  plotnine/_utils/ipython.py,sha256=5Obr73xJ-4dzJEdBrFA8z9TXuxY7pIjKmzdTzWwnxNk,1884
@@ -66,63 +66,63 @@ plotnine/facets/labelling.py,sha256=JEuwERTK0IfmxTWHbl2nsGgxZ6xi0n2TTWT4_OSfQcQ,
66
66
  plotnine/facets/layout.py,sha256=TIkMChA0wJWLKN31PH0czS6CN4pw3o--PF49LakJ2h4,8967
67
67
  plotnine/facets/strips.py,sha256=-SWFaxqdzn-dnjx_Hxkuwd3kO-u_yreMLcMurm_IHqU,5688
68
68
  plotnine/geoms/__init__.py,sha256=HEfhNmmNH4xm4rpXnFRXY4eLkJha3XPM72IIwVjv5Lc,2697
69
- plotnine/geoms/annotate.py,sha256=Dqy5j29nrd7hHF-xZk8ZsE05j0ahdCtLkES7p7zjW-4,4025
70
- plotnine/geoms/annotation_logticks.py,sha256=dvcMNOCjyh9fjfKV4gx-q3h_MJod7QfpdpKJgBF_tOU,9015
71
- plotnine/geoms/annotation_stripes.py,sha256=B77M9wcJ6xmhYmQ5aTb0IEKfBIEUJzRHPjBRZbMQ1FA,6099
72
- plotnine/geoms/geom.py,sha256=W-4u5hmaOktNXDDsJtTJTsHj-iRh9bmJ-9OKdGsfcEo,16552
73
- plotnine/geoms/geom_abline.py,sha256=Q9FNVIQMLr5Xq-fsGD8H17D6f8uOdOhGoDoMI-GTqU4,3178
69
+ plotnine/geoms/annotate.py,sha256=T5RxepV55HVNzPfkq43BWxduNIZPslRfPD1yx4bJtoo,4165
70
+ plotnine/geoms/annotation_logticks.py,sha256=6iGdo5szck0_nXdHnvMaRMZuRbH8Tg87tJ_aan_frqg,8969
71
+ plotnine/geoms/annotation_stripes.py,sha256=4Cw7TJ4SZChm_ioqfiiku0cPNnLruGuAP-4vyRao-9Y,6080
72
+ plotnine/geoms/geom.py,sha256=cjxzWTZiAMop9FuXWg5kqgo1lBEG2Uu6DzARjHOpBY4,17300
73
+ plotnine/geoms/geom_abline.py,sha256=6oxAJl_yFKKmf7OTHvACw6fg6kgJEN54hGKkyWOLr6o,3188
74
74
  plotnine/geoms/geom_area.py,sha256=wvQ4nNvhJNN3nfn6Bv1gCARC6IWTjOjOfHPfSmg6Sxc,818
75
75
  plotnine/geoms/geom_bar.py,sha256=SnqS4hPTfqXzdPh1U-kNuBg0LNX9_tQC9OKhIlB7cy0,1732
76
76
  plotnine/geoms/geom_bin_2d.py,sha256=b2fAQVywug-ey3KtqeOoYQ2RNRSRE_fa4s7M41W-_FE,574
77
- plotnine/geoms/geom_blank.py,sha256=au-WTJRdOcSfq_qQ6TugrSzjAweZfTElH9l8yYrmZ0I,821
78
- plotnine/geoms/geom_boxplot.py,sha256=m9vrF4i4Cw_NGxZ9WLVPsDxbqQ3jJFtnJ-UrtE3teCI,9775
77
+ plotnine/geoms/geom_blank.py,sha256=38BpE9iSh3ktbOe9ayNer6IDD1q7E4EiKS_KnFSko0c,770
78
+ plotnine/geoms/geom_boxplot.py,sha256=OISXd3CCuH06sKqOB8xlfUPrwUX_FUKQauSqE7L-PhQ,9778
79
79
  plotnine/geoms/geom_col.py,sha256=sGZZzkXgwlgI2D-M1UE1QAWsWZqtP1z8R0HjrnW9hkY,1187
80
80
  plotnine/geoms/geom_count.py,sha256=IRIlQqwt0kIHf9swYZbFqd5RSQCYRyFKm5hp1C9xHB4,511
81
- plotnine/geoms/geom_crossbar.py,sha256=-TN5UohaMNYPjYavbvW9feyW_fR-CBxFqyvSSrPIYZQ,6237
81
+ plotnine/geoms/geom_crossbar.py,sha256=0NGUY4fhL8VxpGaBgjKQNJy85XJeLc6GiPCs5LZQuCc,6242
82
82
  plotnine/geoms/geom_density.py,sha256=UwUkJxI79L3z19tmoSI6ZYs418XTbRznd-Abzrec3VY,526
83
83
  plotnine/geoms/geom_density_2d.py,sha256=V37QYpdZpZvYxishlN1UBmyyRC3U2eOqR-gaIPxQqS4,400
84
- plotnine/geoms/geom_dotplot.py,sha256=dcQwuUldoibIHc7DD01Tx_bD6pgqm8lz9TBQ3HbloRM,8671
85
- plotnine/geoms/geom_errorbar.py,sha256=ZFZf9fzd9FLPAuCHZ-H_l-PMRM4CFFIkVB_xTY_EoiQ,2192
86
- plotnine/geoms/geom_errorbarh.py,sha256=FMl_PdppiBXUj1ChhtOPWsOQHKg8HxyYUCjuL0HxQyA,2206
84
+ plotnine/geoms/geom_dotplot.py,sha256=ZHmRCEGS3Nv2tiNwALBC7ewBg1prcb_FOxAImTGKP3c,8680
85
+ plotnine/geoms/geom_errorbar.py,sha256=jpCuQ8CE2RKfRR8Aw_3s473HXrOk-WPOl46n4oC-8UI,2199
86
+ plotnine/geoms/geom_errorbarh.py,sha256=mgRo8KngGyKVSPPF8vUYlzdslBJEIe9QJC--DlWL5t4,2213
87
87
  plotnine/geoms/geom_freqpoly.py,sha256=lsr1dwZyR6gUbzl5SNJ5yYklsWGjkqYYAe3Mb8AWynk,339
88
88
  plotnine/geoms/geom_histogram.py,sha256=JnqHJb7HISQKnH2XwW6JOB8g462yGH1nMMYxbtwvqtY,329
89
- plotnine/geoms/geom_hline.py,sha256=0LkUi68q5IUoaQxqnWAxKpFiP3sPr2QsH6uMQpC8k-k,2471
89
+ plotnine/geoms/geom_hline.py,sha256=uMYBDkfshx2tskuZpjvo9N9Ztqt7AUxuaYFhMxeHi5c,2481
90
90
  plotnine/geoms/geom_jitter.py,sha256=mJCLt2SoZN_tx_3XS8oF5JojtL2m5HO1bEqdN-JEPUg,2291
91
91
  plotnine/geoms/geom_label.py,sha256=lPxmDlS6VgEHqD3Ac1Q-Zxs75JcnduoXjJ_D1AzzWew,2835
92
92
  plotnine/geoms/geom_line.py,sha256=IzKVPwF_Oe3uwRpuh5Xu9LFvz0XcKqCL4pN03iGHBdk,522
93
- plotnine/geoms/geom_linerange.py,sha256=xfysK1fJcLm-_8odQYmzzEhlccO-d7NHfMtVBr1bbGQ,1275
94
- plotnine/geoms/geom_map.py,sha256=Py7iNoFapwftCSK7UMwkTOeTd3_8vWStVuB12tInjOo,9600
95
- plotnine/geoms/geom_path.py,sha256=ckGx7Te78PzF-jPAhP2DE19OZYnWWd0HzqSuOBN_cOQ,17088
96
- plotnine/geoms/geom_point.py,sha256=Y7eDpRoCR3EKDujsVPMG_EK9o1-wTfrgpuRJ0cjCTLs,4611
93
+ plotnine/geoms/geom_linerange.py,sha256=dkgQ28YZfjyMb_y8s0wfcAz5mHF7f7y_h1Den5wHyJk,1282
94
+ plotnine/geoms/geom_map.py,sha256=E2DVSMx9-8-4duCUOd-4n-Lqu_VDL5qzQrt2PCLkMzY,9602
95
+ plotnine/geoms/geom_path.py,sha256=nDrlmqPn869vyUF4RYbLKkbQka14SWJu9pqCN-cdKbQ,17106
96
+ plotnine/geoms/geom_point.py,sha256=KWM511zxIpKQzxI_NJpFqEszNWg5E7iHZJylKvvaK2c,4607
97
97
  plotnine/geoms/geom_pointdensity.py,sha256=TKaxAUPwdrVMw0MVYe14apBsRfW_5_zXFLSlOS60Zlw,372
98
- plotnine/geoms/geom_pointrange.py,sha256=CvuMVHiYcv6giBb3b2A5KkAykLHMlM_CaQXBmOlCHGw,2624
99
- plotnine/geoms/geom_polygon.py,sha256=ry_aQzgpog6ibe-13JQltltE7U4NFLElWqc9BtevpGc,4160
98
+ plotnine/geoms/geom_pointrange.py,sha256=C746lDJfRe4M5k8sobEjaer_1IE60ZqIgs2cvq6Q3bY,2607
99
+ plotnine/geoms/geom_polygon.py,sha256=c6Ba9mvCMvY11FZfZATF78byuL7JMCqx3DEMMJBNfTE,4149
100
100
  plotnine/geoms/geom_qq.py,sha256=uimpCvBrJhMscglVzI7cUAnAC3ZRs7nqXyGilq1ipkw,294
101
101
  plotnine/geoms/geom_qq_line.py,sha256=i0L9if-JxTr2heYUpIqV_cZ4qMiB7Om6EOurR76nFhg,337
102
102
  plotnine/geoms/geom_quantile.py,sha256=rcYmyO062IFASBoYZEE31KtHKSVkWNwF-upbBp9AgAU,806
103
- plotnine/geoms/geom_raster.py,sha256=AyzNbJanvS0tyx1nXZ7utZvmJjRvYEsMT8AuyiCAup8,6269
104
- plotnine/geoms/geom_rect.py,sha256=-IWtp20iz1lN2zWlT2O8_2rp_ZoFG2AiSAVn619Vnek,3725
105
- plotnine/geoms/geom_ribbon.py,sha256=2L7-ElZRud7AYroKlSnQQVlEP2fTtzVlOpxnmX_fFjs,5752
106
- plotnine/geoms/geom_rug.py,sha256=TMOvKmcOq_Z2mpRy4YrlsjjNt5A2Oy58F55xO78IYtE,3511
107
- plotnine/geoms/geom_segment.py,sha256=KU6jCaU2a8X7OI9WHQevLgQQBqmBjYnI3j4jV9fOqhU,3045
103
+ plotnine/geoms/geom_raster.py,sha256=eBhTkb_ybxuCKSExEm0Np5UAyBmj9qdDey8Ui9Xb1gs,6266
104
+ plotnine/geoms/geom_rect.py,sha256=dGOAkVXf5NSJgIbaVezg1ac78GqimElB9Ua0L_SH_YM,3717
105
+ plotnine/geoms/geom_ribbon.py,sha256=af9uElWaJQSc4taTLZ7ZDzng2Zw4IrIfNPrus4OuTmM,5771
106
+ plotnine/geoms/geom_rug.py,sha256=2Sdarf5z3w4JbklVUk7JykWdbBNKaT0Wl5NMBl4LqT4,3520
107
+ plotnine/geoms/geom_segment.py,sha256=v63MoKlK4aNengCXYdPeQrcBIgBCis8QobpF3CJOf5U,3052
108
108
  plotnine/geoms/geom_sina.py,sha256=oyCiBCdsWjrSNaS2jOpu0Ng8nEl_peaCT-EuHE9jG34,912
109
- plotnine/geoms/geom_smooth.py,sha256=LE8H6kMlQdLiwLgMfIZYWh8TCFyMbYM7nXwlV2kLzT8,3540
109
+ plotnine/geoms/geom_smooth.py,sha256=8jSxQFTdoo7RmeTrGl2j-iE6lfydUPitz-dKvxKk0Kw,3545
110
110
  plotnine/geoms/geom_spoke.py,sha256=s-kug0H-YGhyjso9W43XvzJf9-g6inh8zzuSFeXzSaU,977
111
- plotnine/geoms/geom_step.py,sha256=oKi2lWG7M2lGpF4G0yC7_5qn5tb-gc3o4H-pu3_wS64,2364
112
- plotnine/geoms/geom_text.py,sha256=CqmjsOJsAsIsTm6SkVJt0gms363AXpLN_JCTpuK6Krw,11908
111
+ plotnine/geoms/geom_step.py,sha256=tTohADfGyC3M4zCzxLUhzkA2XsHBeH0eaWq-m2DQEQQ,2371
112
+ plotnine/geoms/geom_text.py,sha256=fOGjIZL5ajB78su5lUGBo_uPa-NvTCaPo640oEbJE_4,11884
113
113
  plotnine/geoms/geom_tile.py,sha256=3x9BSxaSr-ys6N5R2wY8B9fNiyV9vMdoXbjIDqHy_ng,1431
114
- plotnine/geoms/geom_violin.py,sha256=VqwD2GiCRUCq5tLQbQVcLiXSaxWO-OMe9_K9GnWqdrs,7147
115
- plotnine/geoms/geom_vline.py,sha256=qKUd4IosH1VrwHbqNbs29kZyIW5lQRa_LZLRcLbPg38,3377
114
+ plotnine/geoms/geom_violin.py,sha256=sHEcLGIqQ1FgTHUZDKOU3J9mlMMBJinjTrc3BmRLjGU,7122
115
+ plotnine/geoms/geom_vline.py,sha256=NTrKu5wpcoiWRtcVVY5Q3xQEBmp1q4DgBgHzwTbfmOA,3387
116
116
  plotnine/guides/__init__.py,sha256=ulI-mDhtq3jAQEAqPv8clrn3UHGFOu3xRuO7jXlq-LY,201
117
117
  plotnine/guides/guide.py,sha256=CHz0SnfrSqKCl4aHmkM2r5YFITsa1XVDcaglW3nuIt4,8149
118
118
  plotnine/guides/guide_axis.py,sha256=zG_5Ot1kTuHOeuQspL5V1A1-7c7X8cNeMDoF01Ghh2w,296
119
119
  plotnine/guides/guide_colorbar.py,sha256=gL0218k3iJPNEpj6hWKxau3R8qRpT2bPkS1q9Ptcrxw,16266
120
120
  plotnine/guides/guide_legend.py,sha256=CrcV3iCAcEfUnSbkGtsS31c3OFQMWKiHqZZXejxOdno,14212
121
- plotnine/guides/guides.py,sha256=x_lqprDkppc2pEF7sEesk9Lf4vi4fWQGJFMGsqmkwx8,15465
121
+ plotnine/guides/guides.py,sha256=cV7CwoYNrjkeaDHZ2AGcS2Dij5RpPovSiB-v47E7vhQ,15471
122
122
  plotnine/mapping/__init__.py,sha256=DLu9E0kwwuHxzTUenoVjCNTTdkWMwIDtkExLleBq1MI,205
123
123
  plotnine/mapping/_env.py,sha256=ZXlTt2THRIcWb2WGk9fCpCMdVynlUX_BpG0Uwj7axi0,6072
124
- plotnine/mapping/_eval_environment.py,sha256=ZPzIh61maJl79VQMj6ZsBGcaVV870SIARqI-Z4eNeXA,2463
125
- plotnine/mapping/aes.py,sha256=ZF69UUcA0IovFx2HMMKhVDnPxS9yw74LHL6C1VYwK84,15801
124
+ plotnine/mapping/_eval_environment.py,sha256=PTrnnqrxMXqjt23t2NGRcU9i8Jie3ZaMe6W5aKtI7bI,2502
125
+ plotnine/mapping/aes.py,sha256=eqNTBHqFnSBPoVNdrUB7pYM-ShlUTYvmwdQRXh9beV4,16717
126
126
  plotnine/mapping/evaluation.py,sha256=kblTxVv3M4xIGnHyReUU0RtmmIN77Or2JBcci0nGGfE,5913
127
127
  plotnine/plot_composition/__init__.py,sha256=ZJYpfVF158cQZ1zREXy6wHNJ4FbSmqWxIkHWZwX3QT8,148
128
128
  plotnine/plot_composition/_compose.py,sha256=6UgXs6VBH0LIXW2uQlBQy-URh_mM948F5GOwN6IV734,12167
@@ -145,47 +145,47 @@ plotnine/scales/limits.py,sha256=fymDbVwAXTzYryLfMM7AWKfOkP2uOj5_dhTPC5PVYk0,562
145
145
  plotnine/scales/range.py,sha256=xBlFdAhthH1zKIJZDdkEyAA2kMZtyDorDFHKBMHKyAQ,1379
146
146
  plotnine/scales/scale.py,sha256=T7oMfiXA2xOL_LQQIEKY_06VvXVfF-norNpc2gdTNNw,8078
147
147
  plotnine/scales/scale_alpha.py,sha256=lYVZeaCC2pk-0-BoXnOeP0RdIbHYk6qo3DRClJrxTKo,2350
148
- plotnine/scales/scale_color.py,sha256=TKDpMBRsDM5--RbMRHGwMAoVFr7hF9Jtz2yKhrG9stQ,13347
149
- plotnine/scales/scale_continuous.py,sha256=N6CctWrvzmVL9JQaaJmggghqUh3ayzmuYs83RdmjpuA,16456
150
- plotnine/scales/scale_datetime.py,sha256=bY8fhXGj7fLOq783nuhoLJCybo_QnOo0L5XZFt5vSHc,3167
151
- plotnine/scales/scale_discrete.py,sha256=AXxoa3_0_zoPRm46GflBU8pbY9B26bSmxSv5hDv9mos,9392
148
+ plotnine/scales/scale_color.py,sha256=6Cyjxml8Jn3EFiDY8IGvYM9_qacHvBQZFvbFh5Gyg8Q,14514
149
+ plotnine/scales/scale_continuous.py,sha256=YMRjGh7QS644ajx5dVPJ9QTrWbTjmKt62MvVSFl3Y7U,16500
150
+ plotnine/scales/scale_datetime.py,sha256=OM9gfHKGkQIBrgqCEE00zUV0cMXXxTIS7wc9dYQZ6sE,3983
151
+ plotnine/scales/scale_discrete.py,sha256=UwAB0icMljH-eW6mK3g0YWAVzuE4P_91ZMYJhoMoMV4,9431
152
152
  plotnine/scales/scale_identity.py,sha256=-PL9vJn0C_wOgrOQpqYSQbTWFSALoRPFzGXzebABTv8,2211
153
153
  plotnine/scales/scale_linetype.py,sha256=pwLTmglN6d4bnChbuBi6HWbDP_nsE4viXD8CK6XKBPw,1373
154
154
  plotnine/scales/scale_manual.py,sha256=oMnIfQNfxO4qw-gkBG3ikyuXdeoMgstRSdiibLc_DAA,4525
155
155
  plotnine/scales/scale_shape.py,sha256=I0JdYDreCbznQilaTi6m27F91N5daCj9D2ZPuP2Szls,2081
156
156
  plotnine/scales/scale_size.py,sha256=04nUQzKB_qpuQrcg8C7jYmLDYtdnlg6PkY7SivP5OlY,3273
157
157
  plotnine/scales/scale_stroke.py,sha256=7LKAg6-Q3VTuw78N2XEjFFzBa8yY5NVnfBSoJGsBS5o,1711
158
- plotnine/scales/scale_xy.py,sha256=uWWYxWr0fWIlqJJIRdwG44pMfmKPwKLjclvrE95ZUrk,10060
158
+ plotnine/scales/scale_xy.py,sha256=5NfFOJb2PeqLS3DuUylFGzzX7EJAaZWOO8LfLcU5zgU,10088
159
159
  plotnine/scales/scales.py,sha256=rmHFm7roKEeZhKs81gjhCNMyNpvXmQOqxqvEH8GCwOs,10113
160
160
  plotnine/stats/__init__.py,sha256=IZVXnHYmdpdev9NzxA-Nw9dZnuq1pudZNWLbYbvfWSg,1386
161
161
  plotnine/stats/binning.py,sha256=0B1pNKPBWuSo_w3LDXkoBQjup71klYQ1FxaparKomFs,9611
162
162
  plotnine/stats/density.py,sha256=TQihwduejW5I5oZ8GdWI_U_n-5N49SfMShm3OtlDhW8,6372
163
163
  plotnine/stats/distributions.py,sha256=pskpWUFcyrLR6AYeZAciRH0Cb267ME3G2mvm79xsgMc,1178
164
- plotnine/stats/smoothers.py,sha256=yS-DOcNwXapyL7A_eh-yL2dlQEbvF0TtmjIBhpqkLq0,17863
165
- plotnine/stats/stat.py,sha256=StgrG42kx7iiK6hm2-dZWBpZQABOaZ_AKgG0lLxp4N8,11744
166
- plotnine/stats/stat_bin.py,sha256=lpSL22f78mCMoVojuao_-EVNa4bTqfS5TRtZncPoRII,4590
167
- plotnine/stats/stat_bin_2d.py,sha256=cT8YZ8LnY4ns0kz2kgANU_3-lh_1T-uadhFYNa_JIzY,5252
168
- plotnine/stats/stat_bindot.py,sha256=gAuvVgSGIX0-mXaTKYDqbwTmxanCNWDYPjmnMn7vv14,10277
169
- plotnine/stats/stat_boxplot.py,sha256=bwvrDs4vusYztn1Ibc-PTa_Rqn0P9JdILSBgmPotU_M,6018
170
- plotnine/stats/stat_count.py,sha256=JBCSHqHy5yA485pKVCqMCHRmJS5FOKinO4i6sKDnq7A,1993
171
- plotnine/stats/stat_density.py,sha256=dUwSkP3fLayWcDKbMQijWGiy1BW1KSo3L5UNfQlcWTw,10396
172
- plotnine/stats/stat_density_2d.py,sha256=KD2sllEeStiMCI2SljI_XW-zVksQGj3kmKYqHTNjgC8,5558
173
- plotnine/stats/stat_ecdf.py,sha256=Ck5a9QBU3p1KuBS3Ma8JrXZr9a-tB1Z-53vhLirRIZw,1631
174
- plotnine/stats/stat_ellipse.py,sha256=6fC6__kGLdrHVeM4KXnuDQcSnvSwhFy-n5EpStZS3J0,7502
175
- plotnine/stats/stat_function.py,sha256=fGpgxRJXtU0GB_uB4UkrbxGYDucVBaOdoxESzGF3-pc,3156
176
- plotnine/stats/stat_hull.py,sha256=tfoFAnTZG6NME3_22ltMPVcdmobrexTwNqhtZHc7tgk,1475
177
- plotnine/stats/stat_identity.py,sha256=h9SV8TZ4bkOF0uaNXMidAKdMrqPSDugm1Z2fyKzU3n4,384
178
- plotnine/stats/stat_pointdensity.py,sha256=Lnf6vsqVEs9FxgnB-zk_LnzLfMBvH8MV4KQWNj3i0Uo,2177
179
- plotnine/stats/stat_qq.py,sha256=aDjfUHqyBFFErBAJ5E9LJZU8SVBJbCnXSUl2-AJ3DQg,2876
180
- plotnine/stats/stat_qq_line.py,sha256=_J6XvNXQwChhwl4dDgKl1czLnZhm04jXp9xwylsIwsU,3305
181
- plotnine/stats/stat_quantile.py,sha256=D-TC-c2Ul0eFggz688X0l6MaqDrVmCBMM3aviiLTpHc,2481
182
- plotnine/stats/stat_sina.py,sha256=IAUxNoj001jctsSQaRiN81GpGFTeX35dqdWLMvnzIaA,9449
183
- plotnine/stats/stat_smooth.py,sha256=hiJ5y7ai_qaFv8xxPeLs3BS6IPRvOy6Nor6SGA2H0wU,8016
184
- plotnine/stats/stat_sum.py,sha256=CgxZlcwJ8t8gVojwSz55UEOKwDC0MfI5ISWrwDbqy4w,1655
185
- plotnine/stats/stat_summary.py,sha256=RuuliRixo9c6sDnKmsQBXSJvfzkH2Oru7tyl88mpqzI,9289
186
- plotnine/stats/stat_summary_bin.py,sha256=sf9NPmSzyJML4-EfHNLmDB_wSyi5o4RAXIiIZLgNy9Q,5710
187
- plotnine/stats/stat_unique.py,sha256=7SXu_gb6h6YgLa1L-LM8hHe0jMZfcus4c_mEAN9zcWo,386
188
- plotnine/stats/stat_ydensity.py,sha256=cuGZwpBdotGhOLYaK_W_JvJSjCht9W1eJpbzW69ZhOY,5686
164
+ plotnine/stats/smoothers.py,sha256=6zRX55yXuUjZ-VDDSJWR1uH_4U_rQWGWMefPFHVCEGQ,17825
165
+ plotnine/stats/stat.py,sha256=Q7vjY_QV5pPR1guLVFZbQx9x1vtf7xrCadcUdq4UxPc,11532
166
+ plotnine/stats/stat_bin.py,sha256=3wzROpzDGQIe3N15aI7tzYJXBfxPxTjY-pGmP5yb620,4535
167
+ plotnine/stats/stat_bin_2d.py,sha256=ANM3IcGRN4IKMtmNuJZLnCUWdC7tQYAAg75gVe59B58,5217
168
+ plotnine/stats/stat_bindot.py,sha256=FS-Axqhb-nMR9HK77BD-ElDHpsS8NaJKLMIff4-lDSU,10199
169
+ plotnine/stats/stat_boxplot.py,sha256=5PvTTig5kAZQjenYL-158tjnzRnRUcnJpJL5qOdv9WI,5997
170
+ plotnine/stats/stat_count.py,sha256=P560-9Lm6FWUvL5bGASIBxY3vQnbcZrU4CYlBdZpE3Y,1928
171
+ plotnine/stats/stat_density.py,sha256=1TyOIiAaOaZesPcqIsnaVk14by0cKu6b7d7r-a5ZZSI,10346
172
+ plotnine/stats/stat_density_2d.py,sha256=XSyE78IJwLLH4G5H7UD7ZrmknmaGCEMUHwvwNYmYVLQ,5647
173
+ plotnine/stats/stat_ecdf.py,sha256=BdeisCWzDnuPMc3vBgZqpDsXCKy8ZfoSRwFPOQlgksM,1630
174
+ plotnine/stats/stat_ellipse.py,sha256=NMr22TQMfVDZejIKvw1UWcB1NJptTlg6-qRf8d8EzJE,7570
175
+ plotnine/stats/stat_function.py,sha256=AcP_wUu063fA8RAjc7AoFuVQmLdlsuEvP6m8AuTm9HY,3123
176
+ plotnine/stats/stat_hull.py,sha256=WhbAkukGd2wEsmwoTXOPZTcBKggAL3hKml6AhvFVkQg,1454
177
+ plotnine/stats/stat_identity.py,sha256=Bb9kMMK0u5xLOZytJgL-4xdnvDRRWxRoqSwDN2gJCSI,358
178
+ plotnine/stats/stat_pointdensity.py,sha256=1vYecHae0m3USERh3s9OKY0ZY-qpgaD9q9I8MOShna0,2131
179
+ plotnine/stats/stat_qq.py,sha256=KkrkkBhcov9y87VSSbrZQMvyMvJf5Ojj992caVCE2BI,3398
180
+ plotnine/stats/stat_qq_line.py,sha256=3stKRIGFf_8P-0ugfl6rWELqUgAKIl6NsFhkPurOeMg,3460
181
+ plotnine/stats/stat_quantile.py,sha256=ATCr3hq7k-QyrALQgjhpP8cEtv_Rk0UTsZA4rTlKsf8,2453
182
+ plotnine/stats/stat_sina.py,sha256=_sT7FveukEv8KwH59nLiszvFLAEz-TkpBC_Ak1cIC_I,9393
183
+ plotnine/stats/stat_smooth.py,sha256=o_tqdiB5d3AanLfpUxUluwGZboPRwM8RWXqNMbj18NY,7976
184
+ plotnine/stats/stat_sum.py,sha256=xSgPvfPNCpCgXO7eUy7YSe1NUfjnqQ3dvCetJlRXAMY,1629
185
+ plotnine/stats/stat_summary.py,sha256=UG7TmpdYnrMLdcfwECD8aIQ4xloNSHGIqgGihiwzNS0,9260
186
+ plotnine/stats/stat_summary_bin.py,sha256=FYtkw8NG2Mlo-U_gO3Z944Qddpq619kEm9tAzK4sNj8,5701
187
+ plotnine/stats/stat_unique.py,sha256=qnpcbmux0SRxzRxCTtQvh8dBtSxFkHCTSZKiLaFRjkg,360
188
+ plotnine/stats/stat_ydensity.py,sha256=eX6sucANNLDDc_DnFGTzEvUqKWoyX04ILkv4PeVT01Q,5623
189
189
  plotnine/themes/__init__.py,sha256=tEKIF4gYmOF2Z1-_UDdK8zh41dLl-61HUGIhOQvki6I,916
190
190
  plotnine/themes/seaborn_rcmod.py,sha256=Pi-UX5LyH9teSuteYpqPOEnfLgKUz01LnKDyDA7Aois,15502
191
191
  plotnine/themes/targets.py,sha256=MjBRWWRgsLXXM_PJffPsV4DttQJB_m11jdD837BteuU,1686
@@ -211,8 +211,8 @@ plotnine/themes/elements/element_line.py,sha256=xF6xW-iA66YEP_fN7ooqaYry8_8qZT-e
211
211
  plotnine/themes/elements/element_rect.py,sha256=w5cLH-Sr4cTRXVdkRiu8kBqFt3TXHhIb1MUITfi89gE,1767
212
212
  plotnine/themes/elements/element_text.py,sha256=8yhwBa9s9JKCtBcqcBNybbCGK6ieDnZv4SHiC4Sy2qc,6255
213
213
  plotnine/themes/elements/margin.py,sha256=jMHe-UKHHer_VYwAVDC-Tz2-AP_4YDuXPTWAuacoqgU,4080
214
- plotnine-0.15.0a2.dist-info/licenses/LICENSE,sha256=GY4tQiUd17Tq3wWR42Zs9MRTFOTf6ahIXhZTcwAdOeU,1082
215
- plotnine-0.15.0a2.dist-info/METADATA,sha256=ZjpYia1FW1NH1FWNY2gE1hza7Ay7zAzk2Enu3oxAiZw,9399
216
- plotnine-0.15.0a2.dist-info/WHEEL,sha256=Nw36Djuh_5VDukK0H78QzOX-_FQEo6V37m3nkm96gtU,91
217
- plotnine-0.15.0a2.dist-info/top_level.txt,sha256=t340Mbko1ZbmvYPkQ81dIiPHcaQdTUszYz-bWUpr8ys,9
218
- plotnine-0.15.0a2.dist-info/RECORD,,
214
+ plotnine-0.15.0a4.dist-info/licenses/LICENSE,sha256=GY4tQiUd17Tq3wWR42Zs9MRTFOTf6ahIXhZTcwAdOeU,1082
215
+ plotnine-0.15.0a4.dist-info/METADATA,sha256=MCVzMIfRSdwYyq2UrgdS74Zc8QiMo9pp8GiwCVFZXCo,9407
216
+ plotnine-0.15.0a4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
217
+ plotnine-0.15.0a4.dist-info/top_level.txt,sha256=t340Mbko1ZbmvYPkQ81dIiPHcaQdTUszYz-bWUpr8ys,9
218
+ plotnine-0.15.0a4.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.7.1)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5