plotnine 0.14.5__py3-none-any.whl → 0.15.0.dev2__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 +916 -0
- plotnine/_mpl/layout_manager/_layout_tree.py +625 -0
- plotnine/_mpl/layout_manager/_spaces.py +1007 -0
- plotnine/_mpl/patches.py +1 -1
- plotnine/_mpl/text.py +59 -24
- plotnine/_mpl/utils.py +78 -10
- plotnine/_utils/__init__.py +5 -5
- plotnine/_utils/dev.py +45 -27
- plotnine/animation.py +1 -1
- plotnine/coords/coord_trans.py +1 -1
- plotnine/data/__init__.py +12 -8
- plotnine/doctools.py +1 -1
- plotnine/facets/facet.py +30 -39
- plotnine/facets/facet_grid.py +14 -6
- plotnine/facets/facet_wrap.py +3 -5
- plotnine/facets/strips.py +7 -9
- plotnine/geoms/geom_crossbar.py +2 -3
- plotnine/geoms/geom_path.py +1 -1
- plotnine/ggplot.py +94 -65
- plotnine/guides/guide.py +12 -10
- plotnine/guides/guide_colorbar.py +3 -3
- plotnine/guides/guide_legend.py +12 -13
- plotnine/guides/guides.py +3 -3
- plotnine/iapi.py +5 -2
- plotnine/labels.py +5 -0
- plotnine/mapping/aes.py +4 -3
- plotnine/options.py +14 -7
- plotnine/plot_composition/__init__.py +10 -0
- plotnine/plot_composition/_compose.py +436 -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/scale.py +1 -1
- plotnine/stats/binning.py +1 -1
- plotnine/stats/smoothers.py +3 -5
- plotnine/stats/stat_density.py +1 -1
- plotnine/stats/stat_qq_line.py +1 -1
- plotnine/stats/stat_sina.py +1 -1
- plotnine/themes/elements/__init__.py +2 -0
- plotnine/themes/elements/element_text.py +35 -24
- plotnine/themes/elements/margin.py +73 -60
- plotnine/themes/targets.py +3 -1
- plotnine/themes/theme.py +13 -7
- plotnine/themes/theme_gray.py +28 -31
- plotnine/themes/theme_matplotlib.py +25 -28
- plotnine/themes/theme_seaborn.py +31 -34
- plotnine/themes/theme_void.py +17 -26
- plotnine/themes/themeable.py +290 -157
- {plotnine-0.14.5.dist-info → plotnine-0.15.0.dev2.dist-info}/METADATA +4 -3
- {plotnine-0.14.5.dist-info → plotnine-0.15.0.dev2.dist-info}/RECORD +61 -54
- {plotnine-0.14.5.dist-info → plotnine-0.15.0.dev2.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.0.dev2.dist-info/licenses}/LICENSE +0 -0
- {plotnine-0.14.5.dist-info → plotnine-0.15.0.dev2.dist-info}/top_level.txt +0 -0
|
@@ -1,29 +1,32 @@
|
|
|
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=OoPKtbFNkhQ6vKk8NfivC_xKPSvwBWvNo5-ZHS8tRAk,14540
|
|
4
4
|
plotnine/exceptions.py,sha256=SgTxBHkV65HjGI3aFy2q1_lHP9HAdiuxVLN3U-PJWSQ,1616
|
|
5
|
-
plotnine/ggplot.py,sha256=
|
|
6
|
-
plotnine/iapi.py,sha256=
|
|
7
|
-
plotnine/labels.py,sha256=
|
|
5
|
+
plotnine/ggplot.py,sha256=oMeAwsYDVhpsFV1VhxYes-0bgAPmlAE8py_eI92Xlbo,24822
|
|
6
|
+
plotnine/iapi.py,sha256=GZfXYS6JKyc8J2DB-QuSdtG_WGjBeR2vZP6ERYPUlrg,8420
|
|
7
|
+
plotnine/labels.py,sha256=Ja1F0ZN5YxNjaWiAckc-jniMqXdnZxHCsqK5uudpx1s,2827
|
|
8
8
|
plotnine/layer.py,sha256=r46mX4Sh_M2sHSpLcnf9UL-zc4ANuXvK8HRCQeWcya4,16749
|
|
9
|
-
plotnine/options.py,sha256=
|
|
9
|
+
plotnine/options.py,sha256=j3zXv4wc3J4nOI_TqJ5s_abuifodt_UN8MR8M4i8UVA,3108
|
|
10
10
|
plotnine/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
plotnine/qplot.py,sha256=
|
|
11
|
+
plotnine/qplot.py,sha256=BSAb4u5I7PaPGofkAgx7brdCNTjMZvC_TDGHVUZ35xM,7384
|
|
12
12
|
plotnine/typing.py,sha256=p99BI4XQPsESqK1lg8V2lYeHgqNSQVbCxsfP1PLWhUw,3801
|
|
13
13
|
plotnine/watermark.py,sha256=_SLjhiQquB0Vd_b5t_7-mUCvrbiN86tUYbBqU76JcSM,1506
|
|
14
14
|
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
|
|
15
|
+
plotnine/_mpl/gridspec.py,sha256=OvlXchYXam1c1n8iNPKu4fJr6rqmH7OWebhJX5qqOmY,7903
|
|
18
16
|
plotnine/_mpl/offsetbox.py,sha256=E7810lS9W7Gexwz5mkSMz7PQXXHkYX-WHKlPHqapmTg,3216
|
|
19
|
-
plotnine/_mpl/patches.py,sha256=
|
|
20
|
-
plotnine/_mpl/text.py,sha256=
|
|
17
|
+
plotnine/_mpl/patches.py,sha256=DLIFn4BFqrv0FXtbtloNWE5kaJRq85Q_8vz21sMJxuU,2568
|
|
18
|
+
plotnine/_mpl/text.py,sha256=0rkIi69Yd3qX9yg4f3wfaDY8tky1HZXkZFA0575Di_c,3822
|
|
21
19
|
plotnine/_mpl/ticker.py,sha256=RY_7AdTggc7QBq9_t0KBJXg36oxKfB-Vtc9FzLnaGnQ,393
|
|
22
20
|
plotnine/_mpl/transforms.py,sha256=DNaOlNq76xlT696sN8ot1bmYyp4mmrjXQHk3kTi4HIg,76
|
|
23
|
-
plotnine/_mpl/utils.py,sha256=
|
|
24
|
-
plotnine/
|
|
21
|
+
plotnine/_mpl/utils.py,sha256=c9wkxxUEweDg6O0hdgZonNOFncwxkqFye8_bL7td7I4,4131
|
|
22
|
+
plotnine/_mpl/layout_manager/__init__.py,sha256=IXpPF5Oycc45uFpK4MJ6kcQCe1u5VUfnHLNZGcnrJCg,157
|
|
23
|
+
plotnine/_mpl/layout_manager/_engine.py,sha256=ESUvbLAlZApFbBi6w7gZA7S4guS0Rmrj-us-gzYP2ZM,2809
|
|
24
|
+
plotnine/_mpl/layout_manager/_layout_items.py,sha256=9wkXgCa66yCCYtpF_e0n0ORGuGGwDmEmPnNrkv-QbEg,28360
|
|
25
|
+
plotnine/_mpl/layout_manager/_layout_tree.py,sha256=Cm2-udh5DQ8cxIZwefRkRp1ddgtJp8kvMYKeWBasHVU,18061
|
|
26
|
+
plotnine/_mpl/layout_manager/_spaces.py,sha256=8ydStHv0O1b6JBdtBXbHkSrGzklMgutMUfgwB0lH_Dk,31866
|
|
27
|
+
plotnine/_utils/__init__.py,sha256=9RVYfwi9NmDGGzprUlE40yv9tJhW_VDAZkUKTTuvN7g,32473
|
|
25
28
|
plotnine/_utils/context.py,sha256=HPQy_uyNXdS0s9URD7ZePyuc5hFU2XrRBLDTqRDLJzY,1708
|
|
26
|
-
plotnine/_utils/dev.py,sha256=
|
|
29
|
+
plotnine/_utils/dev.py,sha256=0qgRbMhcd4dfuLuYxx0skocKAtfwHF02ntyILRBogbg,1629
|
|
27
30
|
plotnine/_utils/ipython.py,sha256=5Obr73xJ-4dzJEdBrFA8z9TXuxY7pIjKmzdTzWwnxNk,1884
|
|
28
31
|
plotnine/_utils/quarto.py,sha256=bwbU3ork8wuUIW5VDJ73J_DbWWzpYWpAd76cHMzCRao,890
|
|
29
32
|
plotnine/_utils/registry.py,sha256=HoiB2NnbEHufXjYnVJyrJKflk2RwKtTYk2L3n7tH4XA,3321
|
|
@@ -32,8 +35,8 @@ plotnine/coords/coord.py,sha256=czFYR1qTKA-BcIyaL9l3pfzkIYM2pKwYAiTPbJtvSWQ,6880
|
|
|
32
35
|
plotnine/coords/coord_cartesian.py,sha256=vGeSFe9UyycUkbjdjoPNSQJwnnU7fEmsk0nl_oBvzxY,3038
|
|
33
36
|
plotnine/coords/coord_fixed.py,sha256=C9aIy28GQHE4XJQ3I1LhnHviUmhBia7dk64eBVNftLw,1763
|
|
34
37
|
plotnine/coords/coord_flip.py,sha256=lskU4t72pMmtWL16slw3CV8bLPfTNONCmO_A1d0g5Rs,2891
|
|
35
|
-
plotnine/coords/coord_trans.py,sha256=
|
|
36
|
-
plotnine/data/__init__.py,sha256
|
|
38
|
+
plotnine/coords/coord_trans.py,sha256=g6Scq9q_78bHBV6McHMQfFM4KPBVcz9bjpnNx7eMyz0,4750
|
|
39
|
+
plotnine/data/__init__.py,sha256=roWstfVMSE7ThDsySeSQeopO7vOvo5K7o4nYyACRY5w,21316
|
|
37
40
|
plotnine/data/diamonds.csv,sha256=lXRzCwOrokHYmcSpdRHFBhsZNY-riVEHdPtsJBaDRcQ,2772143
|
|
38
41
|
plotnine/data/economics.csv,sha256=cWSbwFV6yqb7jYiKrwSCY-rz43icVHwQ_7fVXGksQeM,21860
|
|
39
42
|
plotnine/data/economics_long.csv,sha256=ukh3n2MqY_rPEeNYy1PgryqJZfeS2AEKjSddnVJ0rdg,123339
|
|
@@ -52,13 +55,13 @@ plotnine/data/presidential.csv,sha256=jkUSy3wUSYpo1Vdj90U8ivSE1TLL_ztxvtqIVa7C1W
|
|
|
52
55
|
plotnine/data/seals.csv,sha256=VEuSEBLz3Fj14eBdM6hp6M6GpH2lqN5ekT_d2Mk1rK0,57035
|
|
53
56
|
plotnine/data/txhousing.csv,sha256=RdHoH5W9bud_DzsefIc8yNOFaxMl6IDDKMiP68aoIoY,523993
|
|
54
57
|
plotnine/facets/__init__.py,sha256=9P2MBA8MF1cRpk7YRQUcYN2UY7kZ9qrZc_0Qm9SRguk,393
|
|
55
|
-
plotnine/facets/facet.py,sha256=
|
|
56
|
-
plotnine/facets/facet_grid.py,sha256=
|
|
58
|
+
plotnine/facets/facet.py,sha256=myAJ4llRpRFDV2ZZKT7AW4Bn-CRxy4Cvke40HtCK4Mo,18185
|
|
59
|
+
plotnine/facets/facet_grid.py,sha256=sK50Syzt2sy5aE3hObBC4TdQwCwyY-EtDUK2_B6aDnM,11755
|
|
57
60
|
plotnine/facets/facet_null.py,sha256=J--RdOvFP7AE0jK79-LNRksvCJExQTpS-tU5i0pGqs8,749
|
|
58
|
-
plotnine/facets/facet_wrap.py,sha256=
|
|
61
|
+
plotnine/facets/facet_wrap.py,sha256=NOoNdkaSb1y_ho6UygGkDih7zlQYXcEgJYK0Lqu6e98,8805
|
|
59
62
|
plotnine/facets/labelling.py,sha256=JEuwERTK0IfmxTWHbl2nsGgxZ6xi0n2TTWT4_OSfQcQ,8833
|
|
60
63
|
plotnine/facets/layout.py,sha256=TIkMChA0wJWLKN31PH0czS6CN4pw3o--PF49LakJ2h4,8967
|
|
61
|
-
plotnine/facets/strips.py,sha256=
|
|
64
|
+
plotnine/facets/strips.py,sha256=7K_SLVLhlb2-E-JNCZWOamFbC-yKLJ0yuqbwNoElLXk,6154
|
|
62
65
|
plotnine/geoms/__init__.py,sha256=HEfhNmmNH4xm4rpXnFRXY4eLkJha3XPM72IIwVjv5Lc,2697
|
|
63
66
|
plotnine/geoms/annotate.py,sha256=5sCHIMR_GjM2ujNY73i4iBczOkGi-vq1Nr1Yc3cBgZo,4022
|
|
64
67
|
plotnine/geoms/annotation_logticks.py,sha256=2_ILqE2cgX2acFoGZPDnbTJ0V7b3-ALVjno71FQuuxE,8953
|
|
@@ -72,7 +75,7 @@ plotnine/geoms/geom_blank.py,sha256=au-WTJRdOcSfq_qQ6TugrSzjAweZfTElH9l8yYrmZ0I,
|
|
|
72
75
|
plotnine/geoms/geom_boxplot.py,sha256=m9vrF4i4Cw_NGxZ9WLVPsDxbqQ3jJFtnJ-UrtE3teCI,9775
|
|
73
76
|
plotnine/geoms/geom_col.py,sha256=UTdMmpGIjVNyB7BIH9b90LiS8iuf9sChCG20EgWY3Ao,870
|
|
74
77
|
plotnine/geoms/geom_count.py,sha256=IRIlQqwt0kIHf9swYZbFqd5RSQCYRyFKm5hp1C9xHB4,511
|
|
75
|
-
plotnine/geoms/geom_crossbar.py,sha256
|
|
78
|
+
plotnine/geoms/geom_crossbar.py,sha256=-TN5UohaMNYPjYavbvW9feyW_fR-CBxFqyvSSrPIYZQ,6237
|
|
76
79
|
plotnine/geoms/geom_density.py,sha256=UwUkJxI79L3z19tmoSI6ZYs418XTbRznd-Abzrec3VY,526
|
|
77
80
|
plotnine/geoms/geom_density_2d.py,sha256=V37QYpdZpZvYxishlN1UBmyyRC3U2eOqR-gaIPxQqS4,400
|
|
78
81
|
plotnine/geoms/geom_dotplot.py,sha256=dcQwuUldoibIHc7DD01Tx_bD6pgqm8lz9TBQ3HbloRM,8671
|
|
@@ -86,7 +89,7 @@ plotnine/geoms/geom_label.py,sha256=lPxmDlS6VgEHqD3Ac1Q-Zxs75JcnduoXjJ_D1AzzWew,
|
|
|
86
89
|
plotnine/geoms/geom_line.py,sha256=IzKVPwF_Oe3uwRpuh5Xu9LFvz0XcKqCL4pN03iGHBdk,522
|
|
87
90
|
plotnine/geoms/geom_linerange.py,sha256=xfysK1fJcLm-_8odQYmzzEhlccO-d7NHfMtVBr1bbGQ,1275
|
|
88
91
|
plotnine/geoms/geom_map.py,sha256=Py7iNoFapwftCSK7UMwkTOeTd3_8vWStVuB12tInjOo,9600
|
|
89
|
-
plotnine/geoms/geom_path.py,sha256=
|
|
92
|
+
plotnine/geoms/geom_path.py,sha256=OejXwgW5s9kZpGQ2sdux8lcLVI_Ncwf3Q1QUCLo8xTw,17127
|
|
90
93
|
plotnine/geoms/geom_point.py,sha256=Y7eDpRoCR3EKDujsVPMG_EK9o1-wTfrgpuRJ0cjCTLs,4611
|
|
91
94
|
plotnine/geoms/geom_pointdensity.py,sha256=TKaxAUPwdrVMw0MVYe14apBsRfW_5_zXFLSlOS60Zlw,372
|
|
92
95
|
plotnine/geoms/geom_pointrange.py,sha256=CvuMVHiYcv6giBb3b2A5KkAykLHMlM_CaQXBmOlCHGw,2624
|
|
@@ -108,31 +111,35 @@ plotnine/geoms/geom_tile.py,sha256=3x9BSxaSr-ys6N5R2wY8B9fNiyV9vMdoXbjIDqHy_ng,1
|
|
|
108
111
|
plotnine/geoms/geom_violin.py,sha256=-lXdHQjrPAQXvFEviGi9iJqU_8L6_YrYYXwg62-8N58,6545
|
|
109
112
|
plotnine/geoms/geom_vline.py,sha256=qKUd4IosH1VrwHbqNbs29kZyIW5lQRa_LZLRcLbPg38,3377
|
|
110
113
|
plotnine/guides/__init__.py,sha256=ulI-mDhtq3jAQEAqPv8clrn3UHGFOu3xRuO7jXlq-LY,201
|
|
111
|
-
plotnine/guides/guide.py,sha256=
|
|
114
|
+
plotnine/guides/guide.py,sha256=L1O26atzSjiQR-YW9w3XEcH0BDFiqthdY6wA6DAOapo,8229
|
|
112
115
|
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=
|
|
116
|
+
plotnine/guides/guide_colorbar.py,sha256=zHM6QRrzACC2l1Vq6p04Cu0QAGuTBfp3AhPyyMbYbgc,16290
|
|
117
|
+
plotnine/guides/guide_legend.py,sha256=0CSyRxlHu0RSJjnMWvnStnq-EtjgdmHv54QgPWC3ufE,14236
|
|
118
|
+
plotnine/guides/guides.py,sha256=UI3AhTOQCsXur_L-Jr3VwAQcX4dBeZMohSbA2wg1YeA,15478
|
|
116
119
|
plotnine/mapping/__init__.py,sha256=DLu9E0kwwuHxzTUenoVjCNTTdkWMwIDtkExLleBq1MI,205
|
|
117
120
|
plotnine/mapping/_env.py,sha256=ZzcSv54PLOD8b8Ny2h6xteGoO8bJdbj9dM6Mlg5h0V8,6094
|
|
118
|
-
plotnine/mapping/aes.py,sha256=
|
|
121
|
+
plotnine/mapping/aes.py,sha256=feWP04esVXjrpHlIsSRgoGvFtJjQ4noy-2gIp5MdUww,16192
|
|
119
122
|
plotnine/mapping/evaluation.py,sha256=91xVP2KxCM-ur_KOFyki7Jm1t8GWPA1TecJbjZ9yOaQ,7699
|
|
123
|
+
plotnine/plot_composition/__init__.py,sha256=ZJYpfVF158cQZ1zREXy6wHNJ4FbSmqWxIkHWZwX3QT8,148
|
|
124
|
+
plotnine/plot_composition/_compose.py,sha256=uQfXxDbEayqyjX6yMOCJiePqAK7I2OU5YnBhphkYFY4,11477
|
|
125
|
+
plotnine/plot_composition/_plotspec.py,sha256=0F7q7PjDMDqcallpnBdX3N2iSRjdBTyjSvMFf83uvPU,1015
|
|
126
|
+
plotnine/plot_composition/_spacer.py,sha256=vaC4F5tHhvL7T7Ns9zxUbytqwB6MLNhm5jtiKG0vAiU,798
|
|
120
127
|
plotnine/positions/__init__.py,sha256=DQZE6duMUNRQifpa6SBrOKxZpGDk4NqQSGZLr9Yc9GI,595
|
|
121
128
|
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=
|
|
129
|
+
plotnine/positions/position_dodge.py,sha256=6PbAhWDfNK7NK6FZZOcfr4mdmVOUV9VLH8xD0dbQFEU,3941
|
|
130
|
+
plotnine/positions/position_dodge2.py,sha256=QI-oTIiYFOARozbBRuGQ1RHnZI_DKbCR2pJbuXlZvpQ,5661
|
|
124
131
|
plotnine/positions/position_fill.py,sha256=DvBm_6Oh2X3tSl67gP-iFoBmbYHy_WfZotHSrY4k0Rg,160
|
|
125
132
|
plotnine/positions/position_identity.py,sha256=9GE4WpuISLcGWTsgGqF9MARKhxdVySk5xeHACtyfJIk,203
|
|
126
133
|
plotnine/positions/position_jitter.py,sha256=p5s21ry-k7dK2G_jtWFghocbA-1XS73ljMiuJRIM4WE,2226
|
|
127
134
|
plotnine/positions/position_jitterdodge.py,sha256=D8J-9LfQgWaU6x5cZxkqze5NbKiHaDysUn-ftsxV7sU,3315
|
|
128
135
|
plotnine/positions/position_nudge.py,sha256=IKzQsnZ5xpUzi_yP2GFBl249jICQv4j3dGpEcwx88UY,949
|
|
129
|
-
plotnine/positions/position_stack.py,sha256=
|
|
130
|
-
plotnine/scales/__init__.py,sha256=
|
|
136
|
+
plotnine/positions/position_stack.py,sha256=faomJVM-YsrxDVAmKC_9G3t6dNg3pgmaIcEJo39Xrb4,4027
|
|
137
|
+
plotnine/scales/__init__.py,sha256=xjDUpVWBJ-JftSJkLTP_nB2Zs5BptaduOjkhBv3Qs9Q,5470
|
|
131
138
|
plotnine/scales/_expand.py,sha256=ynlg_6s3NDTIe8dcP1C6XpiaIva0sin9fILFLywS04Y,1551
|
|
132
139
|
plotnine/scales/_runtime_typing.py,sha256=Ror99gzX0pe25F3trm2TZOyQhNhIZiS8IfbYpdRh-aU,1311
|
|
133
140
|
plotnine/scales/limits.py,sha256=db4r3Mvb35USO3w-fq12Rs5T3oOTylH5n8Ie8LFl6Wk,5619
|
|
134
141
|
plotnine/scales/range.py,sha256=xBlFdAhthH1zKIJZDdkEyAA2kMZtyDorDFHKBMHKyAQ,1379
|
|
135
|
-
plotnine/scales/scale.py,sha256
|
|
142
|
+
plotnine/scales/scale.py,sha256=MpHUbFuO_6CdnfPS2IZ7eVMmZWY7wLvAWVSaSb6lSsw,8075
|
|
136
143
|
plotnine/scales/scale_alpha.py,sha256=lYVZeaCC2pk-0-BoXnOeP0RdIbHYk6qo3DRClJrxTKo,2350
|
|
137
144
|
plotnine/scales/scale_color.py,sha256=TKDpMBRsDM5--RbMRHGwMAoVFr7hF9Jtz2yKhrG9stQ,13347
|
|
138
145
|
plotnine/scales/scale_continuous.py,sha256=gpTpZdPtQrTx1AiJAmBwW-AzvBiNbv9bUDzZmvdO0tA,16392
|
|
@@ -147,17 +154,17 @@ plotnine/scales/scale_stroke.py,sha256=7LKAg6-Q3VTuw78N2XEjFFzBa8yY5NVnfBSoJGsBS
|
|
|
147
154
|
plotnine/scales/scale_xy.py,sha256=uWWYxWr0fWIlqJJIRdwG44pMfmKPwKLjclvrE95ZUrk,10060
|
|
148
155
|
plotnine/scales/scales.py,sha256=rmHFm7roKEeZhKs81gjhCNMyNpvXmQOqxqvEH8GCwOs,10113
|
|
149
156
|
plotnine/stats/__init__.py,sha256=IZVXnHYmdpdev9NzxA-Nw9dZnuq1pudZNWLbYbvfWSg,1386
|
|
150
|
-
plotnine/stats/binning.py,sha256=
|
|
157
|
+
plotnine/stats/binning.py,sha256=df0Qt4ZSi9rNqivAVZrgKyiQHh_CK9qAFabqjXn5uqs,9453
|
|
151
158
|
plotnine/stats/density.py,sha256=TQihwduejW5I5oZ8GdWI_U_n-5N49SfMShm3OtlDhW8,6372
|
|
152
159
|
plotnine/stats/distributions.py,sha256=pskpWUFcyrLR6AYeZAciRH0Cb267ME3G2mvm79xsgMc,1178
|
|
153
|
-
plotnine/stats/smoothers.py,sha256=
|
|
160
|
+
plotnine/stats/smoothers.py,sha256=yS-DOcNwXapyL7A_eh-yL2dlQEbvF0TtmjIBhpqkLq0,17863
|
|
154
161
|
plotnine/stats/stat.py,sha256=HIVzEsqPG_7cmdlocuq53MArD5kPxrNkXM5Bz6ws3_o,11741
|
|
155
162
|
plotnine/stats/stat_bin.py,sha256=lpSL22f78mCMoVojuao_-EVNa4bTqfS5TRtZncPoRII,4590
|
|
156
163
|
plotnine/stats/stat_bin_2d.py,sha256=cT8YZ8LnY4ns0kz2kgANU_3-lh_1T-uadhFYNa_JIzY,5252
|
|
157
164
|
plotnine/stats/stat_bindot.py,sha256=EZb7IuXN1HaF6Su70VG-rKmQG9-Yc7xst8knFydIAXM,10290
|
|
158
165
|
plotnine/stats/stat_boxplot.py,sha256=bwvrDs4vusYztn1Ibc-PTa_Rqn0P9JdILSBgmPotU_M,6018
|
|
159
166
|
plotnine/stats/stat_count.py,sha256=JBCSHqHy5yA485pKVCqMCHRmJS5FOKinO4i6sKDnq7A,1993
|
|
160
|
-
plotnine/stats/stat_density.py,sha256=
|
|
167
|
+
plotnine/stats/stat_density.py,sha256=XlRYG89iXWGBOn_0YpCbmycGlxumgRTukA5A1DtWwwY,10400
|
|
161
168
|
plotnine/stats/stat_density_2d.py,sha256=KD2sllEeStiMCI2SljI_XW-zVksQGj3kmKYqHTNjgC8,5558
|
|
162
169
|
plotnine/stats/stat_ecdf.py,sha256=Ck5a9QBU3p1KuBS3Ma8JrXZr9a-tB1Z-53vhLirRIZw,1631
|
|
163
170
|
plotnine/stats/stat_ellipse.py,sha256=6fC6__kGLdrHVeM4KXnuDQcSnvSwhFy-n5EpStZS3J0,7502
|
|
@@ -166,9 +173,9 @@ plotnine/stats/stat_hull.py,sha256=tfoFAnTZG6NME3_22ltMPVcdmobrexTwNqhtZHc7tgk,1
|
|
|
166
173
|
plotnine/stats/stat_identity.py,sha256=h9SV8TZ4bkOF0uaNXMidAKdMrqPSDugm1Z2fyKzU3n4,384
|
|
167
174
|
plotnine/stats/stat_pointdensity.py,sha256=Lnf6vsqVEs9FxgnB-zk_LnzLfMBvH8MV4KQWNj3i0Uo,2177
|
|
168
175
|
plotnine/stats/stat_qq.py,sha256=aDjfUHqyBFFErBAJ5E9LJZU8SVBJbCnXSUl2-AJ3DQg,2876
|
|
169
|
-
plotnine/stats/stat_qq_line.py,sha256=
|
|
176
|
+
plotnine/stats/stat_qq_line.py,sha256=_J6XvNXQwChhwl4dDgKl1czLnZhm04jXp9xwylsIwsU,3305
|
|
170
177
|
plotnine/stats/stat_quantile.py,sha256=D-TC-c2Ul0eFggz688X0l6MaqDrVmCBMM3aviiLTpHc,2481
|
|
171
|
-
plotnine/stats/stat_sina.py,sha256=
|
|
178
|
+
plotnine/stats/stat_sina.py,sha256=k9q34TMvkLEv3mRvWIefoZHR1EogmYEydDiH5fhxwNI,8343
|
|
172
179
|
plotnine/stats/stat_smooth.py,sha256=hiJ5y7ai_qaFv8xxPeLs3BS6IPRvOy6Nor6SGA2H0wU,8016
|
|
173
180
|
plotnine/stats/stat_sum.py,sha256=CgxZlcwJ8t8gVojwSz55UEOKwDC0MfI5ISWrwDbqy4w,1655
|
|
174
181
|
plotnine/stats/stat_summary.py,sha256=RuuliRixo9c6sDnKmsQBXSJvfzkH2Oru7tyl88mpqzI,9289
|
|
@@ -177,31 +184,31 @@ plotnine/stats/stat_unique.py,sha256=7SXu_gb6h6YgLa1L-LM8hHe0jMZfcus4c_mEAN9zcWo
|
|
|
177
184
|
plotnine/stats/stat_ydensity.py,sha256=cuGZwpBdotGhOLYaK_W_JvJSjCht9W1eJpbzW69ZhOY,5686
|
|
178
185
|
plotnine/themes/__init__.py,sha256=tEKIF4gYmOF2Z1-_UDdK8zh41dLl-61HUGIhOQvki6I,916
|
|
179
186
|
plotnine/themes/seaborn_rcmod.py,sha256=Pi-UX5LyH9teSuteYpqPOEnfLgKUz01LnKDyDA7Aois,15502
|
|
180
|
-
plotnine/themes/targets.py,sha256=
|
|
181
|
-
plotnine/themes/theme.py,sha256=
|
|
187
|
+
plotnine/themes/targets.py,sha256=MjBRWWRgsLXXM_PJffPsV4DttQJB_m11jdD837BteuU,1686
|
|
188
|
+
plotnine/themes/theme.py,sha256=sMEDXgbqMNRCnkS3AXIqE_KXdXrXVjwf3r1Kr0WnE5E,16244
|
|
182
189
|
plotnine/themes/theme_538.py,sha256=6ZeIzzJ1VTgCMBYw4uprSjkS8GtcFvJmOIGjbm7h3Ok,1141
|
|
183
190
|
plotnine/themes/theme_bw.py,sha256=KDOqt5C6SYaxr05ngZoTmvGvgZVeCDFLWOpChcO-Hek,1077
|
|
184
191
|
plotnine/themes/theme_classic.py,sha256=B6QkU6blGnEY5iaiPtu4VsvFzC0peWSAhlKiC2SJSkM,923
|
|
185
192
|
plotnine/themes/theme_dark.py,sha256=RbdMfK9GW3q5XFIVgSe_OH-ozohSgjMoxMYqw40QZJ4,1335
|
|
186
|
-
plotnine/themes/theme_gray.py,sha256=
|
|
193
|
+
plotnine/themes/theme_gray.py,sha256=9NVn5jOh_ypMbtnkICQk_v6GsL2gUzjal1xQKMHmwFk,5300
|
|
187
194
|
plotnine/themes/theme_light.py,sha256=-vFWjP_vBMnuThNxkhVJvT9rKtr0tXWcrHDKdI_G3Ic,1429
|
|
188
195
|
plotnine/themes/theme_linedraw.py,sha256=woMr18xoEJmsD8ZCiUpdyn-CE-P1AGFHRNapwCGWUjg,1350
|
|
189
|
-
plotnine/themes/theme_matplotlib.py,sha256=
|
|
196
|
+
plotnine/themes/theme_matplotlib.py,sha256=Dqjr4J68lPxaCxp6Xq9VthOOS5CZLit-pL3zMV24ZaA,4260
|
|
190
197
|
plotnine/themes/theme_minimal.py,sha256=YhkKNA48jP2OLa8-kHMfXFEFRjcsfWBLMID2orITrmo,884
|
|
191
|
-
plotnine/themes/theme_seaborn.py,sha256=
|
|
198
|
+
plotnine/themes/theme_seaborn.py,sha256=l4lz5qD5CqhqBDgfQ61Mye3TX3f5aCHoHHx1Q04j-OI,4211
|
|
192
199
|
plotnine/themes/theme_tufte.py,sha256=qUOrZhQyfJgc0fmy8Es7tT7aYqUSzCjvkP7-dBilwHE,1926
|
|
193
|
-
plotnine/themes/theme_void.py,sha256=
|
|
200
|
+
plotnine/themes/theme_void.py,sha256=bU2REV9dI4x2kDIlPO6Oaq3E5di2cE8VDH-hRrnWEMc,3367
|
|
194
201
|
plotnine/themes/theme_xkcd.py,sha256=q3i1W97kBwpCRbR_Y609JxcfJA2cEX5e5iAS7flbF6I,2257
|
|
195
|
-
plotnine/themes/themeable.py,sha256=
|
|
196
|
-
plotnine/themes/elements/__init__.py,sha256=
|
|
202
|
+
plotnine/themes/themeable.py,sha256=nWgJ-0u4TnXH2rJa-qScUT-Hrefc2O7lPfYnmTTnttg,69179
|
|
203
|
+
plotnine/themes/elements/__init__.py,sha256=Z9xHdhyWPNR2uF_P80aBEXYWp1DU-T2KGOuM7VimpbM,295
|
|
197
204
|
plotnine/themes/elements/element_base.py,sha256=D7cfEglzsSuhW91KpZVAZ2MAHWZp64r9Aajoh8uMGZ4,832
|
|
198
205
|
plotnine/themes/elements/element_blank.py,sha256=4r7-6HeR1494oWNIGQh0ASrFQ4SLvYa6aQHA85eH-Ds,187
|
|
199
206
|
plotnine/themes/elements/element_line.py,sha256=xF6xW-iA66YEP_fN7ooqaYry8_8qZT-eT5wvKwXg3to,1838
|
|
200
207
|
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.
|
|
208
|
+
plotnine/themes/elements/element_text.py,sha256=8yhwBa9s9JKCtBcqcBNybbCGK6ieDnZv4SHiC4Sy2qc,6255
|
|
209
|
+
plotnine/themes/elements/margin.py,sha256=EsT46lqky7APHxMUDiNiTieNo_SIbHF-Sjhmf9zo4WY,2880
|
|
210
|
+
plotnine-0.15.0.dev2.dist-info/licenses/LICENSE,sha256=GY4tQiUd17Tq3wWR42Zs9MRTFOTf6ahIXhZTcwAdOeU,1082
|
|
211
|
+
plotnine-0.15.0.dev2.dist-info/METADATA,sha256=FYs_q0rKbRXD28ywez0hpKxIKULY21v9RCMw2dEgClI,9289
|
|
212
|
+
plotnine-0.15.0.dev2.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
213
|
+
plotnine-0.15.0.dev2.dist-info/top_level.txt,sha256=t340Mbko1ZbmvYPkQ81dIiPHcaQdTUszYz-bWUpr8ys,9
|
|
214
|
+
plotnine-0.15.0.dev2.dist-info/RECORD,,
|