lets-plot 4.5.2.dev1__cp310-cp310-macosx_11_0_arm64.whl → 4.5.3a1__cp310-cp310-macosx_11_0_arm64.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.
Potentially problematic release.
This version of lets-plot might be problematic. Click here for more details.
- lets_plot/_version.py +1 -1
- lets_plot/bistro/waterfall.py +4 -2
- lets_plot/package_data/lets-plot.min.js +1 -1
- lets_plot/plot/series_meta.py +9 -3
- {lets_plot-4.5.2.dev1.dist-info → lets_plot-4.5.3a1.dist-info}/METADATA +1 -1
- {lets_plot-4.5.2.dev1.dist-info → lets_plot-4.5.3a1.dist-info}/RECORD +10 -10
- lets_plot_kotlin_bridge.cpython-310-darwin.so +0 -0
- {lets_plot-4.5.2.dev1.dist-info → lets_plot-4.5.3a1.dist-info}/LICENSE +0 -0
- {lets_plot-4.5.2.dev1.dist-info → lets_plot-4.5.3a1.dist-info}/WHEEL +0 -0
- {lets_plot-4.5.2.dev1.dist-info → lets_plot-4.5.3a1.dist-info}/top_level.txt +0 -0
lets_plot/plot/series_meta.py
CHANGED
|
@@ -86,11 +86,17 @@ def infer_type(data: Union[Dict, 'pandas.DataFrame', 'polars.DataFrame']) -> Dic
|
|
|
86
86
|
continue
|
|
87
87
|
|
|
88
88
|
type_set = set(type(val) for val in var_content)
|
|
89
|
-
if None in type_set:
|
|
90
|
-
type_set.remove(None)
|
|
89
|
+
if type(None) in type_set:
|
|
90
|
+
type_set.remove(type(None))
|
|
91
|
+
|
|
92
|
+
if len(type_set) == 0:
|
|
93
|
+
continue
|
|
91
94
|
|
|
92
95
|
if len(type_set) > 1:
|
|
93
|
-
|
|
96
|
+
if all(issubclass(type_obj, int) or issubclass(type_obj, float) for type_obj in type_set):
|
|
97
|
+
type_info[var_name] = TYPE_FLOATING
|
|
98
|
+
else:
|
|
99
|
+
type_info[var_name] = 'unknown(mixed types)'
|
|
94
100
|
continue
|
|
95
101
|
|
|
96
102
|
try:
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
lets_plot_kotlin_bridge.cpython-310-darwin.so,sha256=
|
|
1
|
+
lets_plot_kotlin_bridge.cpython-310-darwin.so,sha256=U_GJSUeawwtnzg8_RbmTOj9SJAR8WNnUyB865yCpp5k,10158368
|
|
2
2
|
lets_plot/__init__.py,sha256=JBXXtPi4nwhU9jrsUXcQTP1iaGF0jbHBVk_66pohq9I,11224
|
|
3
3
|
lets_plot/_global_settings.py,sha256=4P9UL6xWEARJuxyvXBQUxt1NE_YDrU_ElF34pr72VhA,7440
|
|
4
4
|
lets_plot/_kbridge.py,sha256=H8-GGwhKjnmLlyfAoR_VBHhgb7wlWnQP0-fDto5FF-4,1214
|
|
5
5
|
lets_plot/_type_utils.py,sha256=2GZ4GrJHe7rk_DPSHj88nBW8R9xxx7IGbgGQwhQclOg,2919
|
|
6
|
-
lets_plot/_version.py,sha256=
|
|
6
|
+
lets_plot/_version.py,sha256=tiyf7P2McyFr2nQ7paQwKU1mBJSpwGjIHc9cOMelL-w,239
|
|
7
7
|
lets_plot/mapping.py,sha256=q-O14pcnAosRIWcgg9-CkXMF43p5H7cKbyT4ne9w6hY,3576
|
|
8
8
|
lets_plot/settings_utils.py,sha256=PrceNltN0JNzYxkIx0hwGgzX9dNxgVNqZY5hQ-r8QMQ,8434
|
|
9
9
|
lets_plot/tilesets.py,sha256=6Hqz-m-rFCq2XbMHtRJ0Zq3GTrnV-GCIhlFMT1opevs,9186
|
|
@@ -14,7 +14,7 @@ lets_plot/bistro/im.py,sha256=1WRJolrSGcZbR0n_qbX8oiuPk37D-coT6ZVDbFm7uAc,5489
|
|
|
14
14
|
lets_plot/bistro/joint.py,sha256=5-4121HVo79ie39qJgvAa0_EyG1wlrRx6c1YkudalFM,6552
|
|
15
15
|
lets_plot/bistro/qq.py,sha256=4AMBjbtcwE4mQNmZSglGt1w8MnvhNqg7CZEVNb9fUr4,8098
|
|
16
16
|
lets_plot/bistro/residual.py,sha256=8AwpW5bFD79HJ9MyqkNJKVLtGRtoCrr1W4LJ4bJqXYI,12313
|
|
17
|
-
lets_plot/bistro/waterfall.py,sha256=
|
|
17
|
+
lets_plot/bistro/waterfall.py,sha256=5iPADC8T6zUbjum5DKS4QihifdqTFaE8WOok5ULO0gU,10474
|
|
18
18
|
lets_plot/export/__init__.py,sha256=lDs6fqtQjkgJyKqeYlOdhrHMN__TeggTz73hgHAkyzc,188
|
|
19
19
|
lets_plot/export/ggsave_.py,sha256=2RaY-_spIIV3LL7r1MP9dvM7SMsIeR8CqtGXPjIp4tI,4571
|
|
20
20
|
lets_plot/frontend_context/__init__.py,sha256=nqIogfMulwKRY2l_v3Rn7tXMQ1btasX9f7dwfrVaj_A,204
|
|
@@ -47,7 +47,7 @@ lets_plot/geo_data/gis/response.py,sha256=7Ac2VN4Hl9iffm7wAyfL80Wzo7sG9A1F5BqzJU
|
|
|
47
47
|
lets_plot/geo_data_internals/__init__.py,sha256=4R6hr7MVB9iRi9JNQm_UUQL9jCe_dYDtizw_230V2Yg,234
|
|
48
48
|
lets_plot/geo_data_internals/constants.py,sha256=IDpHhOOg7dbfIKqLNSk3AGa-5HjDcnItFZDxCm4fylw,428
|
|
49
49
|
lets_plot/geo_data_internals/utils.py,sha256=phV_Q84xz4uZH2jI9WLUrYDyZAz0d2-00OOLxkRH4iw,967
|
|
50
|
-
lets_plot/package_data/lets-plot.min.js,sha256=
|
|
50
|
+
lets_plot/package_data/lets-plot.min.js,sha256=kxYpQo2qeSKrBfsh6A5tvRwJmuhmuo-Ei9YcQbGikKA,2779274
|
|
51
51
|
lets_plot/plot/__init__.py,sha256=XrJ9P8gX-RsQqYhHLrcmuByVqk9PEm4kb6EQXrqVJug,1717
|
|
52
52
|
lets_plot/plot/_global_theme.py,sha256=hOV9MzYpfjdF6hDE3mfLv_LqFtaouCJcccoW8pGoFoU,297
|
|
53
53
|
lets_plot/plot/annotation.py,sha256=ZBQ9ZTxOVT-ePVTUocPTQnM92loiVP0jgWw8XM9Cfmo,7660
|
|
@@ -75,15 +75,15 @@ lets_plot/plot/scale_colormap_mpl.py,sha256=D5iWNaWGWpVFCJiNDwf-wHa8Snbd1YiWp6yk
|
|
|
75
75
|
lets_plot/plot/scale_convenience.py,sha256=VWe9BJhFlUbWL2CLrOrxPy523dGIKIOL7A2H7OPx8_0,4116
|
|
76
76
|
lets_plot/plot/scale_identity_.py,sha256=qHo_CI7Xb9Olqza_MqvEV672AaaXM9gWac20SX4AGc4,23796
|
|
77
77
|
lets_plot/plot/scale_position.py,sha256=J8pFmYX2YorK6JhDKtgpFCMS5JhvKSzuASEwQCc6IgA,46285
|
|
78
|
-
lets_plot/plot/series_meta.py,sha256=
|
|
78
|
+
lets_plot/plot/series_meta.py,sha256=0aleiIjUKG5nhqrkPwUpWELedz79JgRjq8zwcnevUiA,5780
|
|
79
79
|
lets_plot/plot/stat.py,sha256=XuZvGxt801db37yM6MsiLb8L5f6BN2L0wfP-QjBDjcc,22933
|
|
80
80
|
lets_plot/plot/subplots.py,sha256=Lhapm_3Z8-yPKTNg3Ey4RXGgJ_6X7zUxwWQ7Ob1Yks4,11311
|
|
81
81
|
lets_plot/plot/theme_.py,sha256=JFEH3BOQiwdKOp_LwLhS2mJghiZRWXTkcfditjc3U5g,28866
|
|
82
82
|
lets_plot/plot/theme_set.py,sha256=USNU-ccPKlZ4KEC1ij92n-SHY5271Ru_c1CQIIWXonI,9103
|
|
83
83
|
lets_plot/plot/tooltip.py,sha256=AvRjT5UPop5wVORFHnaVeBhAIHTYbIjf0FXXUTB4Qvg,15983
|
|
84
84
|
lets_plot/plot/util.py,sha256=778yCTbEOvFRNueMyEPhRkJtPEwzh3Lo0LQO0FtoM0U,8586
|
|
85
|
-
lets_plot-4.5.
|
|
86
|
-
lets_plot-4.5.
|
|
87
|
-
lets_plot-4.5.
|
|
88
|
-
lets_plot-4.5.
|
|
89
|
-
lets_plot-4.5.
|
|
85
|
+
lets_plot-4.5.3a1.dist-info/LICENSE,sha256=r43VKLFaMylB4Ru-pE07j0cfUO7wQpMnWm-uZ8hEqMw,1066
|
|
86
|
+
lets_plot-4.5.3a1.dist-info/METADATA,sha256=ii_g2UJpFi40AMrxmyjP53aD130njgMRGjlJSNtmoWI,11178
|
|
87
|
+
lets_plot-4.5.3a1.dist-info/WHEEL,sha256=HYqjRdli_HnmdRYswLM91KP1v-KILRKMRXsFGStbfQs,109
|
|
88
|
+
lets_plot-4.5.3a1.dist-info/top_level.txt,sha256=ID-ORXUWN-oVZmD4YFy1rQVm2QT1D-MlGON3vdxqgpY,34
|
|
89
|
+
lets_plot-4.5.3a1.dist-info/RECORD,,
|
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|