plotnine 0.14.5__py3-none-any.whl → 0.15.0a2__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/__init__.py +31 -37
- plotnine/_mpl/gridspec.py +265 -0
- plotnine/_mpl/layout_manager/__init__.py +6 -0
- plotnine/_mpl/layout_manager/_engine.py +87 -0
- plotnine/_mpl/layout_manager/_layout_items.py +957 -0
- plotnine/_mpl/layout_manager/_layout_tree.py +905 -0
- plotnine/_mpl/layout_manager/_spaces.py +1154 -0
- plotnine/_mpl/patches.py +70 -34
- plotnine/_mpl/text.py +159 -37
- plotnine/_mpl/utils.py +78 -10
- plotnine/_utils/__init__.py +35 -9
- plotnine/_utils/dev.py +45 -27
- plotnine/_utils/yippie.py +115 -0
- plotnine/animation.py +1 -1
- plotnine/coords/coord.py +3 -3
- plotnine/coords/coord_trans.py +1 -1
- plotnine/data/__init__.py +43 -8
- plotnine/data/anscombe-quartet.csv +45 -0
- plotnine/doctools.py +2 -2
- plotnine/facets/facet.py +34 -43
- plotnine/facets/facet_grid.py +14 -6
- plotnine/facets/facet_wrap.py +3 -5
- plotnine/facets/strips.py +20 -33
- plotnine/geoms/annotate.py +3 -3
- plotnine/geoms/annotation_logticks.py +2 -0
- plotnine/geoms/annotation_stripes.py +2 -0
- plotnine/geoms/geom.py +3 -3
- plotnine/geoms/geom_bar.py +10 -2
- plotnine/geoms/geom_col.py +6 -0
- plotnine/geoms/geom_crossbar.py +2 -3
- plotnine/geoms/geom_path.py +2 -2
- plotnine/geoms/geom_violin.py +24 -7
- plotnine/ggplot.py +95 -66
- plotnine/guides/guide.py +19 -20
- plotnine/guides/guide_colorbar.py +6 -6
- plotnine/guides/guide_legend.py +15 -16
- plotnine/guides/guides.py +8 -8
- plotnine/helpers.py +49 -0
- plotnine/iapi.py +33 -7
- plotnine/labels.py +8 -3
- plotnine/layer.py +4 -4
- plotnine/mapping/_env.py +2 -2
- plotnine/mapping/_eval_environment.py +85 -0
- plotnine/mapping/aes.py +14 -30
- plotnine/mapping/evaluation.py +7 -65
- plotnine/options.py +14 -7
- plotnine/plot_composition/__init__.py +10 -0
- plotnine/plot_composition/_compose.py +462 -0
- plotnine/plot_composition/_plotspec.py +50 -0
- plotnine/plot_composition/_spacer.py +32 -0
- plotnine/positions/position_dodge.py +1 -1
- plotnine/positions/position_dodge2.py +1 -1
- plotnine/positions/position_stack.py +1 -2
- plotnine/qplot.py +1 -2
- plotnine/scales/__init__.py +0 -6
- plotnine/scales/limits.py +7 -7
- plotnine/scales/scale.py +4 -4
- plotnine/scales/scale_continuous.py +2 -1
- plotnine/scales/scale_identity.py +10 -2
- plotnine/scales/scale_manual.py +6 -2
- plotnine/stats/binning.py +5 -2
- plotnine/stats/smoothers.py +3 -5
- plotnine/stats/stat.py +3 -3
- plotnine/stats/stat_bindot.py +1 -3
- plotnine/stats/stat_density.py +2 -2
- plotnine/stats/stat_qq_line.py +1 -1
- plotnine/stats/stat_sina.py +34 -1
- plotnine/themes/elements/__init__.py +3 -0
- plotnine/themes/elements/element_text.py +35 -24
- plotnine/themes/elements/margin.py +137 -61
- plotnine/themes/targets.py +3 -1
- plotnine/themes/theme.py +21 -7
- plotnine/themes/theme_538.py +0 -1
- plotnine/themes/theme_bw.py +0 -1
- plotnine/themes/theme_dark.py +0 -1
- plotnine/themes/theme_gray.py +32 -34
- plotnine/themes/theme_light.py +1 -1
- plotnine/themes/theme_matplotlib.py +28 -31
- plotnine/themes/theme_seaborn.py +36 -36
- plotnine/themes/theme_void.py +25 -27
- plotnine/themes/theme_xkcd.py +0 -1
- plotnine/themes/themeable.py +369 -169
- plotnine/typing.py +3 -3
- plotnine/watermark.py +3 -3
- {plotnine-0.14.5.dist-info → plotnine-0.15.0a2.dist-info}/METADATA +8 -5
- {plotnine-0.14.5.dist-info → plotnine-0.15.0a2.dist-info}/RECORD +89 -78
- {plotnine-0.14.5.dist-info → plotnine-0.15.0a2.dist-info}/WHEEL +1 -1
- plotnine/_mpl/_plot_side_space.py +0 -888
- plotnine/_mpl/_plotnine_tight_layout.py +0 -293
- plotnine/_mpl/layout_engine.py +0 -110
- {plotnine-0.14.5.dist-info → plotnine-0.15.0a2.dist-info/licenses}/LICENSE +0 -0
- {plotnine-0.14.5.dist-info → plotnine-0.15.0a2.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: plotnine
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.15.0a2
|
|
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)
|
|
@@ -60,11 +60,13 @@ Requires-Dist: plotnine[dev]; extra == "all"
|
|
|
60
60
|
Provides-Extra: extra
|
|
61
61
|
Requires-Dist: adjustText>=1.2.0; extra == "extra"
|
|
62
62
|
Requires-Dist: geopandas>=1.0.0; extra == "extra"
|
|
63
|
-
Requires-Dist:
|
|
63
|
+
Requires-Dist: geodatasets>=2024.8.0; extra == "extra"
|
|
64
|
+
Requires-Dist: scikit-learn>=1.3.0; extra == "extra"
|
|
64
65
|
Requires-Dist: scikit-misc>=0.5.1; extra == "extra"
|
|
66
|
+
Requires-Dist: polars>=1.24.0; extra == "extra"
|
|
67
|
+
Requires-Dist: pyarrow>=19.0.1; extra == "extra"
|
|
65
68
|
Provides-Extra: doc
|
|
66
69
|
Requires-Dist: jupyter; extra == "doc"
|
|
67
|
-
Requires-Dist: nbsphinx; extra == "doc"
|
|
68
70
|
Requires-Dist: click; extra == "doc"
|
|
69
71
|
Requires-Dist: numpydoc>=0.9.1; extra == "doc"
|
|
70
72
|
Requires-Dist: quartodoc>=0.7.2; extra == "doc"
|
|
@@ -80,9 +82,10 @@ Requires-Dist: twine; extra == "dev"
|
|
|
80
82
|
Requires-Dist: plotnine[typing]; extra == "dev"
|
|
81
83
|
Requires-Dist: pre-commit; extra == "dev"
|
|
82
84
|
Provides-Extra: typing
|
|
83
|
-
Requires-Dist: pyright==1.1.
|
|
85
|
+
Requires-Dist: pyright==1.1.400; extra == "typing"
|
|
84
86
|
Requires-Dist: ipython; extra == "typing"
|
|
85
87
|
Requires-Dist: pandas-stubs; extra == "typing"
|
|
88
|
+
Dynamic: license-file
|
|
86
89
|
|
|
87
90
|
# plotnine <img width="20%" align="right" src="https://github.com/has2k1/plotnine/blob/logos/doc/images/logo-512.png?raw=true">
|
|
88
91
|
|
|
@@ -1,39 +1,45 @@
|
|
|
1
|
-
plotnine/__init__.py,sha256=
|
|
2
|
-
plotnine/animation.py,sha256=
|
|
3
|
-
plotnine/doctools.py,sha256=
|
|
1
|
+
plotnine/__init__.py,sha256=HrJhd65bnny1t-TawUgvApVj4p-gDZ0ftpr2NKZeW_s,10316
|
|
2
|
+
plotnine/animation.py,sha256=izJZ4Gy0cBHEBc8ehofsWSWOzZW8UEroy1Uvw86Igb0,7521
|
|
3
|
+
plotnine/doctools.py,sha256=4qR1NCnnIG1Q-F0e2MeGzlhD9X0a00dOajtcl7m-yCQ,14546
|
|
4
4
|
plotnine/exceptions.py,sha256=SgTxBHkV65HjGI3aFy2q1_lHP9HAdiuxVLN3U-PJWSQ,1616
|
|
5
|
-
plotnine/ggplot.py,sha256=
|
|
6
|
-
plotnine/
|
|
7
|
-
plotnine/
|
|
8
|
-
plotnine/
|
|
9
|
-
plotnine/
|
|
5
|
+
plotnine/ggplot.py,sha256=xFj9iWAyBvnhitCrpgdNonQIqqjBQ2aDgkqpvHbH364,24823
|
|
6
|
+
plotnine/helpers.py,sha256=4R3KZmtGH46-kRNSGOA0JxZaLKBo0ge8Vnx1cDQ8_gI,966
|
|
7
|
+
plotnine/iapi.py,sha256=jNLmUSoh5g9kNdhOoXSqNcqOdd2-6xdWAmst-YGU41U,9095
|
|
8
|
+
plotnine/labels.py,sha256=3pOXth2Xma_qCqB_xXAGIkPQ9gcaUaaFEAsa5if1iR0,2830
|
|
9
|
+
plotnine/layer.py,sha256=L_1jr8dVwZdeKCDbQg85DuPTPr1D2ifRNvRollJvlgI,16753
|
|
10
|
+
plotnine/options.py,sha256=j3zXv4wc3J4nOI_TqJ5s_abuifodt_UN8MR8M4i8UVA,3108
|
|
10
11
|
plotnine/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
plotnine/qplot.py,sha256=
|
|
12
|
-
plotnine/typing.py,sha256=
|
|
13
|
-
plotnine/watermark.py,sha256=
|
|
12
|
+
plotnine/qplot.py,sha256=BSAb4u5I7PaPGofkAgx7brdCNTjMZvC_TDGHVUZ35xM,7384
|
|
13
|
+
plotnine/typing.py,sha256=0OrEhfnQ99hjpu1hsiFHveT9raQrkmeXEXQKPxMtgjA,3791
|
|
14
|
+
plotnine/watermark.py,sha256=JJnqNynytg7dzu88jX4OymnyhY-kmSj62gFTOoqXrhM,1509
|
|
14
15
|
plotnine/_mpl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
-
plotnine/_mpl/
|
|
16
|
-
plotnine/_mpl/_plotnine_tight_layout.py,sha256=xMjQ4fGqAcybMffo1AlPwsNzJzfl0SJ8DwXpjPeYR9M,8622
|
|
17
|
-
plotnine/_mpl/layout_engine.py,sha256=M9ORM3OOVQ801g2aLBgBxBwf4fGg-d3NbT4eh5GmFS4,3321
|
|
16
|
+
plotnine/_mpl/gridspec.py,sha256=OvlXchYXam1c1n8iNPKu4fJr6rqmH7OWebhJX5qqOmY,7903
|
|
18
17
|
plotnine/_mpl/offsetbox.py,sha256=E7810lS9W7Gexwz5mkSMz7PQXXHkYX-WHKlPHqapmTg,3216
|
|
19
|
-
plotnine/_mpl/patches.py,sha256=
|
|
20
|
-
plotnine/_mpl/text.py,sha256=
|
|
18
|
+
plotnine/_mpl/patches.py,sha256=rYWAZHhTGi1B_dFfVI9JsrYgioum7aQjGwpNh1Q0tKg,3838
|
|
19
|
+
plotnine/_mpl/text.py,sha256=3PL9Uq24QOUyyxS8f-i174dLmNYZmnwkGcWSoNkHh_g,6778
|
|
21
20
|
plotnine/_mpl/ticker.py,sha256=RY_7AdTggc7QBq9_t0KBJXg36oxKfB-Vtc9FzLnaGnQ,393
|
|
22
21
|
plotnine/_mpl/transforms.py,sha256=DNaOlNq76xlT696sN8ot1bmYyp4mmrjXQHk3kTi4HIg,76
|
|
23
|
-
plotnine/_mpl/utils.py,sha256=
|
|
24
|
-
plotnine/
|
|
22
|
+
plotnine/_mpl/utils.py,sha256=0GY3CWWXZiNHe333v9GAquRe5naO54JeiPt67-UvVYw,4147
|
|
23
|
+
plotnine/_mpl/layout_manager/__init__.py,sha256=IXpPF5Oycc45uFpK4MJ6kcQCe1u5VUfnHLNZGcnrJCg,157
|
|
24
|
+
plotnine/_mpl/layout_manager/_engine.py,sha256=ESUvbLAlZApFbBi6w7gZA7S4guS0Rmrj-us-gzYP2ZM,2809
|
|
25
|
+
plotnine/_mpl/layout_manager/_layout_items.py,sha256=3XRBl7xEdBKdhrexRmnVe7k919po6nkyE0q5Hx7j5cQ,29642
|
|
26
|
+
plotnine/_mpl/layout_manager/_layout_tree.py,sha256=hWmNZ2vGH3i3Fn4HSSnjmLi0gbSaSo-ShK233nIx-Yc,26223
|
|
27
|
+
plotnine/_mpl/layout_manager/_spaces.py,sha256=ahBpKt-q1kVOTGiGliwl_DNB6pTEekAzA_7-GXwFlBk,35789
|
|
28
|
+
plotnine/_utils/__init__.py,sha256=lEYll81XHu8gRslhN-OkrYTwQPjdjSQoWT6uhZZyRPc,33145
|
|
25
29
|
plotnine/_utils/context.py,sha256=HPQy_uyNXdS0s9URD7ZePyuc5hFU2XrRBLDTqRDLJzY,1708
|
|
26
|
-
plotnine/_utils/dev.py,sha256=
|
|
30
|
+
plotnine/_utils/dev.py,sha256=0qgRbMhcd4dfuLuYxx0skocKAtfwHF02ntyILRBogbg,1629
|
|
27
31
|
plotnine/_utils/ipython.py,sha256=5Obr73xJ-4dzJEdBrFA8z9TXuxY7pIjKmzdTzWwnxNk,1884
|
|
28
32
|
plotnine/_utils/quarto.py,sha256=bwbU3ork8wuUIW5VDJ73J_DbWWzpYWpAd76cHMzCRao,890
|
|
29
33
|
plotnine/_utils/registry.py,sha256=HoiB2NnbEHufXjYnVJyrJKflk2RwKtTYk2L3n7tH4XA,3321
|
|
34
|
+
plotnine/_utils/yippie.py,sha256=DbmxvVrd34P24CCmOZrAulyGQ35rXNaSr8BuutS2Uio,2392
|
|
30
35
|
plotnine/coords/__init__.py,sha256=inM-9JwSPvYLlOy6opye0YV2EGWsI4708wGKdHvQvVM,301
|
|
31
|
-
plotnine/coords/coord.py,sha256=
|
|
36
|
+
plotnine/coords/coord.py,sha256=Yu2xj4BqFBWlS0XHNDa6h8Dek0_PA6Lssv3M9EneSB8,6883
|
|
32
37
|
plotnine/coords/coord_cartesian.py,sha256=vGeSFe9UyycUkbjdjoPNSQJwnnU7fEmsk0nl_oBvzxY,3038
|
|
33
38
|
plotnine/coords/coord_fixed.py,sha256=C9aIy28GQHE4XJQ3I1LhnHviUmhBia7dk64eBVNftLw,1763
|
|
34
39
|
plotnine/coords/coord_flip.py,sha256=lskU4t72pMmtWL16slw3CV8bLPfTNONCmO_A1d0g5Rs,2891
|
|
35
|
-
plotnine/coords/coord_trans.py,sha256=
|
|
36
|
-
plotnine/data/__init__.py,sha256
|
|
40
|
+
plotnine/coords/coord_trans.py,sha256=g6Scq9q_78bHBV6McHMQfFM4KPBVcz9bjpnNx7eMyz0,4750
|
|
41
|
+
plotnine/data/__init__.py,sha256=RBpXrBruEvTmtkDVPAZOhs6AK_BQpUXuC0Gu33c9lbc,22303
|
|
42
|
+
plotnine/data/anscombe-quartet.csv,sha256=7Lu2MgXHbr5-iGSlBEcRWKBK6F_49pUzeiOqfzPk5Ws,468
|
|
37
43
|
plotnine/data/diamonds.csv,sha256=lXRzCwOrokHYmcSpdRHFBhsZNY-riVEHdPtsJBaDRcQ,2772143
|
|
38
44
|
plotnine/data/economics.csv,sha256=cWSbwFV6yqb7jYiKrwSCY-rz43icVHwQ_7fVXGksQeM,21860
|
|
39
45
|
plotnine/data/economics_long.csv,sha256=ukh3n2MqY_rPEeNYy1PgryqJZfeS2AEKjSddnVJ0rdg,123339
|
|
@@ -52,27 +58,27 @@ plotnine/data/presidential.csv,sha256=jkUSy3wUSYpo1Vdj90U8ivSE1TLL_ztxvtqIVa7C1W
|
|
|
52
58
|
plotnine/data/seals.csv,sha256=VEuSEBLz3Fj14eBdM6hp6M6GpH2lqN5ekT_d2Mk1rK0,57035
|
|
53
59
|
plotnine/data/txhousing.csv,sha256=RdHoH5W9bud_DzsefIc8yNOFaxMl6IDDKMiP68aoIoY,523993
|
|
54
60
|
plotnine/facets/__init__.py,sha256=9P2MBA8MF1cRpk7YRQUcYN2UY7kZ9qrZc_0Qm9SRguk,393
|
|
55
|
-
plotnine/facets/facet.py,sha256=
|
|
56
|
-
plotnine/facets/facet_grid.py,sha256=
|
|
61
|
+
plotnine/facets/facet.py,sha256=zPzRMC6gupDW06vuD_WsNdtCE5QgUnXuNMuXXyuwfx0,18190
|
|
62
|
+
plotnine/facets/facet_grid.py,sha256=sK50Syzt2sy5aE3hObBC4TdQwCwyY-EtDUK2_B6aDnM,11755
|
|
57
63
|
plotnine/facets/facet_null.py,sha256=J--RdOvFP7AE0jK79-LNRksvCJExQTpS-tU5i0pGqs8,749
|
|
58
|
-
plotnine/facets/facet_wrap.py,sha256=
|
|
64
|
+
plotnine/facets/facet_wrap.py,sha256=NOoNdkaSb1y_ho6UygGkDih7zlQYXcEgJYK0Lqu6e98,8805
|
|
59
65
|
plotnine/facets/labelling.py,sha256=JEuwERTK0IfmxTWHbl2nsGgxZ6xi0n2TTWT4_OSfQcQ,8833
|
|
60
66
|
plotnine/facets/layout.py,sha256=TIkMChA0wJWLKN31PH0czS6CN4pw3o--PF49LakJ2h4,8967
|
|
61
|
-
plotnine/facets/strips.py,sha256
|
|
67
|
+
plotnine/facets/strips.py,sha256=-SWFaxqdzn-dnjx_Hxkuwd3kO-u_yreMLcMurm_IHqU,5688
|
|
62
68
|
plotnine/geoms/__init__.py,sha256=HEfhNmmNH4xm4rpXnFRXY4eLkJha3XPM72IIwVjv5Lc,2697
|
|
63
|
-
plotnine/geoms/annotate.py,sha256=
|
|
64
|
-
plotnine/geoms/annotation_logticks.py,sha256=
|
|
65
|
-
plotnine/geoms/annotation_stripes.py,sha256=
|
|
66
|
-
plotnine/geoms/geom.py,sha256=
|
|
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
|
|
67
73
|
plotnine/geoms/geom_abline.py,sha256=Q9FNVIQMLr5Xq-fsGD8H17D6f8uOdOhGoDoMI-GTqU4,3178
|
|
68
74
|
plotnine/geoms/geom_area.py,sha256=wvQ4nNvhJNN3nfn6Bv1gCARC6IWTjOjOfHPfSmg6Sxc,818
|
|
69
|
-
plotnine/geoms/geom_bar.py,sha256
|
|
75
|
+
plotnine/geoms/geom_bar.py,sha256=SnqS4hPTfqXzdPh1U-kNuBg0LNX9_tQC9OKhIlB7cy0,1732
|
|
70
76
|
plotnine/geoms/geom_bin_2d.py,sha256=b2fAQVywug-ey3KtqeOoYQ2RNRSRE_fa4s7M41W-_FE,574
|
|
71
77
|
plotnine/geoms/geom_blank.py,sha256=au-WTJRdOcSfq_qQ6TugrSzjAweZfTElH9l8yYrmZ0I,821
|
|
72
78
|
plotnine/geoms/geom_boxplot.py,sha256=m9vrF4i4Cw_NGxZ9WLVPsDxbqQ3jJFtnJ-UrtE3teCI,9775
|
|
73
|
-
plotnine/geoms/geom_col.py,sha256=
|
|
79
|
+
plotnine/geoms/geom_col.py,sha256=sGZZzkXgwlgI2D-M1UE1QAWsWZqtP1z8R0HjrnW9hkY,1187
|
|
74
80
|
plotnine/geoms/geom_count.py,sha256=IRIlQqwt0kIHf9swYZbFqd5RSQCYRyFKm5hp1C9xHB4,511
|
|
75
|
-
plotnine/geoms/geom_crossbar.py,sha256
|
|
81
|
+
plotnine/geoms/geom_crossbar.py,sha256=-TN5UohaMNYPjYavbvW9feyW_fR-CBxFqyvSSrPIYZQ,6237
|
|
76
82
|
plotnine/geoms/geom_density.py,sha256=UwUkJxI79L3z19tmoSI6ZYs418XTbRznd-Abzrec3VY,526
|
|
77
83
|
plotnine/geoms/geom_density_2d.py,sha256=V37QYpdZpZvYxishlN1UBmyyRC3U2eOqR-gaIPxQqS4,400
|
|
78
84
|
plotnine/geoms/geom_dotplot.py,sha256=dcQwuUldoibIHc7DD01Tx_bD6pgqm8lz9TBQ3HbloRM,8671
|
|
@@ -86,7 +92,7 @@ plotnine/geoms/geom_label.py,sha256=lPxmDlS6VgEHqD3Ac1Q-Zxs75JcnduoXjJ_D1AzzWew,
|
|
|
86
92
|
plotnine/geoms/geom_line.py,sha256=IzKVPwF_Oe3uwRpuh5Xu9LFvz0XcKqCL4pN03iGHBdk,522
|
|
87
93
|
plotnine/geoms/geom_linerange.py,sha256=xfysK1fJcLm-_8odQYmzzEhlccO-d7NHfMtVBr1bbGQ,1275
|
|
88
94
|
plotnine/geoms/geom_map.py,sha256=Py7iNoFapwftCSK7UMwkTOeTd3_8vWStVuB12tInjOo,9600
|
|
89
|
-
plotnine/geoms/geom_path.py,sha256=
|
|
95
|
+
plotnine/geoms/geom_path.py,sha256=ckGx7Te78PzF-jPAhP2DE19OZYnWWd0HzqSuOBN_cOQ,17088
|
|
90
96
|
plotnine/geoms/geom_point.py,sha256=Y7eDpRoCR3EKDujsVPMG_EK9o1-wTfrgpuRJ0cjCTLs,4611
|
|
91
97
|
plotnine/geoms/geom_pointdensity.py,sha256=TKaxAUPwdrVMw0MVYe14apBsRfW_5_zXFLSlOS60Zlw,372
|
|
92
98
|
plotnine/geoms/geom_pointrange.py,sha256=CvuMVHiYcv6giBb3b2A5KkAykLHMlM_CaQXBmOlCHGw,2624
|
|
@@ -105,59 +111,64 @@ plotnine/geoms/geom_spoke.py,sha256=s-kug0H-YGhyjso9W43XvzJf9-g6inh8zzuSFeXzSaU,
|
|
|
105
111
|
plotnine/geoms/geom_step.py,sha256=oKi2lWG7M2lGpF4G0yC7_5qn5tb-gc3o4H-pu3_wS64,2364
|
|
106
112
|
plotnine/geoms/geom_text.py,sha256=CqmjsOJsAsIsTm6SkVJt0gms363AXpLN_JCTpuK6Krw,11908
|
|
107
113
|
plotnine/geoms/geom_tile.py,sha256=3x9BSxaSr-ys6N5R2wY8B9fNiyV9vMdoXbjIDqHy_ng,1431
|
|
108
|
-
plotnine/geoms/geom_violin.py,sha256
|
|
114
|
+
plotnine/geoms/geom_violin.py,sha256=VqwD2GiCRUCq5tLQbQVcLiXSaxWO-OMe9_K9GnWqdrs,7147
|
|
109
115
|
plotnine/geoms/geom_vline.py,sha256=qKUd4IosH1VrwHbqNbs29kZyIW5lQRa_LZLRcLbPg38,3377
|
|
110
116
|
plotnine/guides/__init__.py,sha256=ulI-mDhtq3jAQEAqPv8clrn3UHGFOu3xRuO7jXlq-LY,201
|
|
111
|
-
plotnine/guides/guide.py,sha256=
|
|
117
|
+
plotnine/guides/guide.py,sha256=CHz0SnfrSqKCl4aHmkM2r5YFITsa1XVDcaglW3nuIt4,8149
|
|
112
118
|
plotnine/guides/guide_axis.py,sha256=zG_5Ot1kTuHOeuQspL5V1A1-7c7X8cNeMDoF01Ghh2w,296
|
|
113
|
-
plotnine/guides/guide_colorbar.py,sha256=
|
|
114
|
-
plotnine/guides/guide_legend.py,sha256=
|
|
115
|
-
plotnine/guides/guides.py,sha256=
|
|
119
|
+
plotnine/guides/guide_colorbar.py,sha256=gL0218k3iJPNEpj6hWKxau3R8qRpT2bPkS1q9Ptcrxw,16266
|
|
120
|
+
plotnine/guides/guide_legend.py,sha256=CrcV3iCAcEfUnSbkGtsS31c3OFQMWKiHqZZXejxOdno,14212
|
|
121
|
+
plotnine/guides/guides.py,sha256=x_lqprDkppc2pEF7sEesk9Lf4vi4fWQGJFMGsqmkwx8,15465
|
|
116
122
|
plotnine/mapping/__init__.py,sha256=DLu9E0kwwuHxzTUenoVjCNTTdkWMwIDtkExLleBq1MI,205
|
|
117
|
-
plotnine/mapping/_env.py,sha256=
|
|
118
|
-
plotnine/mapping/
|
|
119
|
-
plotnine/mapping/
|
|
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
|
|
126
|
+
plotnine/mapping/evaluation.py,sha256=kblTxVv3M4xIGnHyReUU0RtmmIN77Or2JBcci0nGGfE,5913
|
|
127
|
+
plotnine/plot_composition/__init__.py,sha256=ZJYpfVF158cQZ1zREXy6wHNJ4FbSmqWxIkHWZwX3QT8,148
|
|
128
|
+
plotnine/plot_composition/_compose.py,sha256=6UgXs6VBH0LIXW2uQlBQy-URh_mM948F5GOwN6IV734,12167
|
|
129
|
+
plotnine/plot_composition/_plotspec.py,sha256=0F7q7PjDMDqcallpnBdX3N2iSRjdBTyjSvMFf83uvPU,1015
|
|
130
|
+
plotnine/plot_composition/_spacer.py,sha256=vaC4F5tHhvL7T7Ns9zxUbytqwB6MLNhm5jtiKG0vAiU,798
|
|
120
131
|
plotnine/positions/__init__.py,sha256=DQZE6duMUNRQifpa6SBrOKxZpGDk4NqQSGZLr9Yc9GI,595
|
|
121
132
|
plotnine/positions/position.py,sha256=BRD_dUh9dhdSP4SQfl8_u_VpaY_s3A2zuznwOn5M_80,8325
|
|
122
|
-
plotnine/positions/position_dodge.py,sha256=
|
|
123
|
-
plotnine/positions/position_dodge2.py,sha256=
|
|
133
|
+
plotnine/positions/position_dodge.py,sha256=6PbAhWDfNK7NK6FZZOcfr4mdmVOUV9VLH8xD0dbQFEU,3941
|
|
134
|
+
plotnine/positions/position_dodge2.py,sha256=QI-oTIiYFOARozbBRuGQ1RHnZI_DKbCR2pJbuXlZvpQ,5661
|
|
124
135
|
plotnine/positions/position_fill.py,sha256=DvBm_6Oh2X3tSl67gP-iFoBmbYHy_WfZotHSrY4k0Rg,160
|
|
125
136
|
plotnine/positions/position_identity.py,sha256=9GE4WpuISLcGWTsgGqF9MARKhxdVySk5xeHACtyfJIk,203
|
|
126
137
|
plotnine/positions/position_jitter.py,sha256=p5s21ry-k7dK2G_jtWFghocbA-1XS73ljMiuJRIM4WE,2226
|
|
127
138
|
plotnine/positions/position_jitterdodge.py,sha256=D8J-9LfQgWaU6x5cZxkqze5NbKiHaDysUn-ftsxV7sU,3315
|
|
128
139
|
plotnine/positions/position_nudge.py,sha256=IKzQsnZ5xpUzi_yP2GFBl249jICQv4j3dGpEcwx88UY,949
|
|
129
|
-
plotnine/positions/position_stack.py,sha256=
|
|
130
|
-
plotnine/scales/__init__.py,sha256=
|
|
140
|
+
plotnine/positions/position_stack.py,sha256=faomJVM-YsrxDVAmKC_9G3t6dNg3pgmaIcEJo39Xrb4,4027
|
|
141
|
+
plotnine/scales/__init__.py,sha256=xjDUpVWBJ-JftSJkLTP_nB2Zs5BptaduOjkhBv3Qs9Q,5470
|
|
131
142
|
plotnine/scales/_expand.py,sha256=ynlg_6s3NDTIe8dcP1C6XpiaIva0sin9fILFLywS04Y,1551
|
|
132
143
|
plotnine/scales/_runtime_typing.py,sha256=Ror99gzX0pe25F3trm2TZOyQhNhIZiS8IfbYpdRh-aU,1311
|
|
133
|
-
plotnine/scales/limits.py,sha256=
|
|
144
|
+
plotnine/scales/limits.py,sha256=fymDbVwAXTzYryLfMM7AWKfOkP2uOj5_dhTPC5PVYk0,5626
|
|
134
145
|
plotnine/scales/range.py,sha256=xBlFdAhthH1zKIJZDdkEyAA2kMZtyDorDFHKBMHKyAQ,1379
|
|
135
|
-
plotnine/scales/scale.py,sha256
|
|
146
|
+
plotnine/scales/scale.py,sha256=T7oMfiXA2xOL_LQQIEKY_06VvXVfF-norNpc2gdTNNw,8078
|
|
136
147
|
plotnine/scales/scale_alpha.py,sha256=lYVZeaCC2pk-0-BoXnOeP0RdIbHYk6qo3DRClJrxTKo,2350
|
|
137
148
|
plotnine/scales/scale_color.py,sha256=TKDpMBRsDM5--RbMRHGwMAoVFr7hF9Jtz2yKhrG9stQ,13347
|
|
138
|
-
plotnine/scales/scale_continuous.py,sha256=
|
|
149
|
+
plotnine/scales/scale_continuous.py,sha256=N6CctWrvzmVL9JQaaJmggghqUh3ayzmuYs83RdmjpuA,16456
|
|
139
150
|
plotnine/scales/scale_datetime.py,sha256=bY8fhXGj7fLOq783nuhoLJCybo_QnOo0L5XZFt5vSHc,3167
|
|
140
151
|
plotnine/scales/scale_discrete.py,sha256=AXxoa3_0_zoPRm46GflBU8pbY9B26bSmxSv5hDv9mos,9392
|
|
141
|
-
plotnine/scales/scale_identity.py,sha256
|
|
152
|
+
plotnine/scales/scale_identity.py,sha256=-PL9vJn0C_wOgrOQpqYSQbTWFSALoRPFzGXzebABTv8,2211
|
|
142
153
|
plotnine/scales/scale_linetype.py,sha256=pwLTmglN6d4bnChbuBi6HWbDP_nsE4viXD8CK6XKBPw,1373
|
|
143
|
-
plotnine/scales/scale_manual.py,sha256=
|
|
154
|
+
plotnine/scales/scale_manual.py,sha256=oMnIfQNfxO4qw-gkBG3ikyuXdeoMgstRSdiibLc_DAA,4525
|
|
144
155
|
plotnine/scales/scale_shape.py,sha256=I0JdYDreCbznQilaTi6m27F91N5daCj9D2ZPuP2Szls,2081
|
|
145
156
|
plotnine/scales/scale_size.py,sha256=04nUQzKB_qpuQrcg8C7jYmLDYtdnlg6PkY7SivP5OlY,3273
|
|
146
157
|
plotnine/scales/scale_stroke.py,sha256=7LKAg6-Q3VTuw78N2XEjFFzBa8yY5NVnfBSoJGsBS5o,1711
|
|
147
158
|
plotnine/scales/scale_xy.py,sha256=uWWYxWr0fWIlqJJIRdwG44pMfmKPwKLjclvrE95ZUrk,10060
|
|
148
159
|
plotnine/scales/scales.py,sha256=rmHFm7roKEeZhKs81gjhCNMyNpvXmQOqxqvEH8GCwOs,10113
|
|
149
160
|
plotnine/stats/__init__.py,sha256=IZVXnHYmdpdev9NzxA-Nw9dZnuq1pudZNWLbYbvfWSg,1386
|
|
150
|
-
plotnine/stats/binning.py,sha256=
|
|
161
|
+
plotnine/stats/binning.py,sha256=0B1pNKPBWuSo_w3LDXkoBQjup71klYQ1FxaparKomFs,9611
|
|
151
162
|
plotnine/stats/density.py,sha256=TQihwduejW5I5oZ8GdWI_U_n-5N49SfMShm3OtlDhW8,6372
|
|
152
163
|
plotnine/stats/distributions.py,sha256=pskpWUFcyrLR6AYeZAciRH0Cb267ME3G2mvm79xsgMc,1178
|
|
153
|
-
plotnine/stats/smoothers.py,sha256=
|
|
154
|
-
plotnine/stats/stat.py,sha256=
|
|
164
|
+
plotnine/stats/smoothers.py,sha256=yS-DOcNwXapyL7A_eh-yL2dlQEbvF0TtmjIBhpqkLq0,17863
|
|
165
|
+
plotnine/stats/stat.py,sha256=StgrG42kx7iiK6hm2-dZWBpZQABOaZ_AKgG0lLxp4N8,11744
|
|
155
166
|
plotnine/stats/stat_bin.py,sha256=lpSL22f78mCMoVojuao_-EVNa4bTqfS5TRtZncPoRII,4590
|
|
156
167
|
plotnine/stats/stat_bin_2d.py,sha256=cT8YZ8LnY4ns0kz2kgANU_3-lh_1T-uadhFYNa_JIzY,5252
|
|
157
|
-
plotnine/stats/stat_bindot.py,sha256=
|
|
168
|
+
plotnine/stats/stat_bindot.py,sha256=gAuvVgSGIX0-mXaTKYDqbwTmxanCNWDYPjmnMn7vv14,10277
|
|
158
169
|
plotnine/stats/stat_boxplot.py,sha256=bwvrDs4vusYztn1Ibc-PTa_Rqn0P9JdILSBgmPotU_M,6018
|
|
159
170
|
plotnine/stats/stat_count.py,sha256=JBCSHqHy5yA485pKVCqMCHRmJS5FOKinO4i6sKDnq7A,1993
|
|
160
|
-
plotnine/stats/stat_density.py,sha256=
|
|
171
|
+
plotnine/stats/stat_density.py,sha256=dUwSkP3fLayWcDKbMQijWGiy1BW1KSo3L5UNfQlcWTw,10396
|
|
161
172
|
plotnine/stats/stat_density_2d.py,sha256=KD2sllEeStiMCI2SljI_XW-zVksQGj3kmKYqHTNjgC8,5558
|
|
162
173
|
plotnine/stats/stat_ecdf.py,sha256=Ck5a9QBU3p1KuBS3Ma8JrXZr9a-tB1Z-53vhLirRIZw,1631
|
|
163
174
|
plotnine/stats/stat_ellipse.py,sha256=6fC6__kGLdrHVeM4KXnuDQcSnvSwhFy-n5EpStZS3J0,7502
|
|
@@ -166,9 +177,9 @@ plotnine/stats/stat_hull.py,sha256=tfoFAnTZG6NME3_22ltMPVcdmobrexTwNqhtZHc7tgk,1
|
|
|
166
177
|
plotnine/stats/stat_identity.py,sha256=h9SV8TZ4bkOF0uaNXMidAKdMrqPSDugm1Z2fyKzU3n4,384
|
|
167
178
|
plotnine/stats/stat_pointdensity.py,sha256=Lnf6vsqVEs9FxgnB-zk_LnzLfMBvH8MV4KQWNj3i0Uo,2177
|
|
168
179
|
plotnine/stats/stat_qq.py,sha256=aDjfUHqyBFFErBAJ5E9LJZU8SVBJbCnXSUl2-AJ3DQg,2876
|
|
169
|
-
plotnine/stats/stat_qq_line.py,sha256=
|
|
180
|
+
plotnine/stats/stat_qq_line.py,sha256=_J6XvNXQwChhwl4dDgKl1czLnZhm04jXp9xwylsIwsU,3305
|
|
170
181
|
plotnine/stats/stat_quantile.py,sha256=D-TC-c2Ul0eFggz688X0l6MaqDrVmCBMM3aviiLTpHc,2481
|
|
171
|
-
plotnine/stats/stat_sina.py,sha256=
|
|
182
|
+
plotnine/stats/stat_sina.py,sha256=IAUxNoj001jctsSQaRiN81GpGFTeX35dqdWLMvnzIaA,9449
|
|
172
183
|
plotnine/stats/stat_smooth.py,sha256=hiJ5y7ai_qaFv8xxPeLs3BS6IPRvOy6Nor6SGA2H0wU,8016
|
|
173
184
|
plotnine/stats/stat_sum.py,sha256=CgxZlcwJ8t8gVojwSz55UEOKwDC0MfI5ISWrwDbqy4w,1655
|
|
174
185
|
plotnine/stats/stat_summary.py,sha256=RuuliRixo9c6sDnKmsQBXSJvfzkH2Oru7tyl88mpqzI,9289
|
|
@@ -177,31 +188,31 @@ plotnine/stats/stat_unique.py,sha256=7SXu_gb6h6YgLa1L-LM8hHe0jMZfcus4c_mEAN9zcWo
|
|
|
177
188
|
plotnine/stats/stat_ydensity.py,sha256=cuGZwpBdotGhOLYaK_W_JvJSjCht9W1eJpbzW69ZhOY,5686
|
|
178
189
|
plotnine/themes/__init__.py,sha256=tEKIF4gYmOF2Z1-_UDdK8zh41dLl-61HUGIhOQvki6I,916
|
|
179
190
|
plotnine/themes/seaborn_rcmod.py,sha256=Pi-UX5LyH9teSuteYpqPOEnfLgKUz01LnKDyDA7Aois,15502
|
|
180
|
-
plotnine/themes/targets.py,sha256=
|
|
181
|
-
plotnine/themes/theme.py,sha256=
|
|
182
|
-
plotnine/themes/theme_538.py,sha256=
|
|
183
|
-
plotnine/themes/theme_bw.py,sha256=
|
|
191
|
+
plotnine/themes/targets.py,sha256=MjBRWWRgsLXXM_PJffPsV4DttQJB_m11jdD837BteuU,1686
|
|
192
|
+
plotnine/themes/theme.py,sha256=x92XVDc7jNuQqaetbHM1tzkQ4dyM5dnNy-cZggGdf2c,16408
|
|
193
|
+
plotnine/themes/theme_538.py,sha256=hr0FaGAffZYU3m8o90WuUWntaPgI2O_eGiaBz259MiM,1088
|
|
194
|
+
plotnine/themes/theme_bw.py,sha256=XXUt9KXEIkROiU0ZVIZicypneb-zL5K1cQFPqYd5WAI,1010
|
|
184
195
|
plotnine/themes/theme_classic.py,sha256=B6QkU6blGnEY5iaiPtu4VsvFzC0peWSAhlKiC2SJSkM,923
|
|
185
|
-
plotnine/themes/theme_dark.py,sha256=
|
|
186
|
-
plotnine/themes/theme_gray.py,sha256=
|
|
187
|
-
plotnine/themes/theme_light.py,sha256
|
|
196
|
+
plotnine/themes/theme_dark.py,sha256=tF6BJ2A4jE6C-Mhl95DQiAbu-mK0Hr1MaymhbJzaD2Q,1255
|
|
197
|
+
plotnine/themes/theme_gray.py,sha256=VRPCWvorGLnqNRVgtvACYDPEvHMQigtp-qMrgOcyar8,5265
|
|
198
|
+
plotnine/themes/theme_light.py,sha256=1vDa6QlLz2vJaa1gYfyttVuXxde2MwDnMnJAqToJMGs,1415
|
|
188
199
|
plotnine/themes/theme_linedraw.py,sha256=woMr18xoEJmsD8ZCiUpdyn-CE-P1AGFHRNapwCGWUjg,1350
|
|
189
|
-
plotnine/themes/theme_matplotlib.py,sha256=
|
|
200
|
+
plotnine/themes/theme_matplotlib.py,sha256=3JPOGhFz6Nul2s03Djd254RPtHtcQ0fsi3Hc9OIi0kc,4248
|
|
190
201
|
plotnine/themes/theme_minimal.py,sha256=YhkKNA48jP2OLa8-kHMfXFEFRjcsfWBLMID2orITrmo,884
|
|
191
|
-
plotnine/themes/theme_seaborn.py,sha256=
|
|
202
|
+
plotnine/themes/theme_seaborn.py,sha256=8giJh8QvkMJ8pr_XXHPDMfkysoI2_yr0vJhz48_sQGI,4319
|
|
192
203
|
plotnine/themes/theme_tufte.py,sha256=qUOrZhQyfJgc0fmy8Es7tT7aYqUSzCjvkP7-dBilwHE,1926
|
|
193
|
-
plotnine/themes/theme_void.py,sha256=
|
|
194
|
-
plotnine/themes/theme_xkcd.py,sha256=
|
|
195
|
-
plotnine/themes/themeable.py,sha256=
|
|
196
|
-
plotnine/themes/elements/__init__.py,sha256=
|
|
204
|
+
plotnine/themes/theme_void.py,sha256=gYXr367zYNhvt_NXlDUx0rBPUYJa1F6adnANn5HEx5A,3407
|
|
205
|
+
plotnine/themes/theme_xkcd.py,sha256=5MOdj_H23Kr_jbDnepmq1DQDbn8-TfUmtzYBZTb4RB4,2207
|
|
206
|
+
plotnine/themes/themeable.py,sha256=aMm5MxbsmEV1XX87AFPPBfAgkJP3Vm0_z9_tKZwsxxY,71321
|
|
207
|
+
plotnine/themes/elements/__init__.py,sha256=xV1la_mTv1BQ3zQp7ZGVGPdV6KohvEVhKAi1uPTeAs0,327
|
|
197
208
|
plotnine/themes/elements/element_base.py,sha256=D7cfEglzsSuhW91KpZVAZ2MAHWZp64r9Aajoh8uMGZ4,832
|
|
198
209
|
plotnine/themes/elements/element_blank.py,sha256=4r7-6HeR1494oWNIGQh0ASrFQ4SLvYa6aQHA85eH-Ds,187
|
|
199
210
|
plotnine/themes/elements/element_line.py,sha256=xF6xW-iA66YEP_fN7ooqaYry8_8qZT-eT5wvKwXg3to,1838
|
|
200
211
|
plotnine/themes/elements/element_rect.py,sha256=w5cLH-Sr4cTRXVdkRiu8kBqFt3TXHhIb1MUITfi89gE,1767
|
|
201
|
-
plotnine/themes/elements/element_text.py,sha256=
|
|
202
|
-
plotnine/themes/elements/margin.py,sha256=
|
|
203
|
-
plotnine-0.
|
|
204
|
-
plotnine-0.
|
|
205
|
-
plotnine-0.
|
|
206
|
-
plotnine-0.
|
|
207
|
-
plotnine-0.
|
|
212
|
+
plotnine/themes/elements/element_text.py,sha256=8yhwBa9s9JKCtBcqcBNybbCGK6ieDnZv4SHiC4Sy2qc,6255
|
|
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,,
|