hiplot-mm 0.0.1__py3-none-any.whl → 0.0.3rc0__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 (58) hide show
  1. hiplot/ipython.py +38 -6
  2. hiplot/pkginfo.py +18 -2
  3. hiplot/server.py +8 -2
  4. hiplot/static/built/hiplot.bundle.js +1 -1
  5. hiplot/static/built/streamlit_component/hiplot_streamlit.bundle.js +1 -1
  6. hiplot/streamlit_helpers.py +11 -2
  7. {hiplot_mm-0.0.1.dist-info → hiplot_mm-0.0.3rc0.dist-info}/METADATA +51 -27
  8. hiplot_mm-0.0.3rc0.dist-info/RECORD +33 -0
  9. {hiplot_mm-0.0.1.dist-info → hiplot_mm-0.0.3rc0.dist-info}/WHEEL +1 -1
  10. {hiplot_mm-0.0.1.dist-info → hiplot_mm-0.0.3rc0.dist-info}/entry_points.txt +0 -1
  11. hiplot/static/built/component.d.ts +0 -109
  12. hiplot/static/built/component.js +0 -528
  13. hiplot/static/built/contextmenu.d.ts +0 -26
  14. hiplot/static/built/contextmenu.js +0 -90
  15. hiplot/static/built/controls.d.ts +0 -52
  16. hiplot/static/built/controls.js +0 -163
  17. hiplot/static/built/filters.d.ts +0 -21
  18. hiplot/static/built/filters.js +0 -96
  19. hiplot/static/built/header.d.ts +0 -39
  20. hiplot/static/built/header.js +0 -176
  21. hiplot/static/built/hiplot-mm-0.0.0.tar.gz +0 -0
  22. hiplot/static/built/hiplot.bundle.js.LICENSE.txt +0 -88
  23. hiplot/static/built/hiplot.bundle.js.map +0 -1
  24. hiplot/static/built/hiplot.d.ts +0 -8
  25. hiplot/static/built/hiplot.js +0 -14
  26. hiplot/static/built/hiplot.lib.js +0 -57712
  27. hiplot/static/built/hiplot.lib.js.map +0 -1
  28. hiplot/static/built/hiplot.licenses.txt +0 -682
  29. hiplot/static/built/hiplot_mm-0.0.0-py3-none-any.whl +0 -0
  30. hiplot/static/built/hiplot_streamlit.bundle.js +0 -3
  31. hiplot/static/built/hiplot_streamlit.bundle.js.LICENSE.txt +0 -97
  32. hiplot/static/built/hiplot_streamlit.bundle.js.map +0 -1
  33. hiplot/static/built/hiplot_streamlit.d.ts +0 -1
  34. hiplot/static/built/hiplot_streamlit.js +0 -85
  35. hiplot/static/built/hiplot_streamlit.licenses.txt +0 -689
  36. hiplot/static/built/hiplot_test.bundle.js +0 -3
  37. hiplot/static/built/hiplot_test.bundle.js.LICENSE.txt +0 -88
  38. hiplot/static/built/hiplot_test.bundle.js.map +0 -1
  39. hiplot/static/built/hiplot_test.d.ts +0 -46
  40. hiplot/static/built/hiplot_test.js +0 -238
  41. hiplot/static/built/hiplot_test.licenses.txt +0 -682
  42. hiplot/static/built/hiplot_web.d.ts +0 -3
  43. hiplot/static/built/hiplot_web.js +0 -54
  44. hiplot/static/built/infertypes.d.ts +0 -38
  45. hiplot/static/built/infertypes.js +0 -316
  46. hiplot/static/built/plotxy.d.ts +0 -62
  47. hiplot/static/built/plotxy.js +0 -602
  48. hiplot/static/built/plugin.d.ts +0 -38
  49. hiplot/static/built/plugin.js +0 -8
  50. hiplot/static/built/rowsdisplaytable.d.ts +0 -35
  51. hiplot/static/built/rowsdisplaytable.js +0 -284
  52. hiplot/static/built/streamlit_component/hiplot.bundle.js +0 -3
  53. hiplot/static/built/types.d.ts +0 -64
  54. hiplot/static/built/types.js +0 -55
  55. hiplot_mm-0.0.1.dist-info/RECORD +0 -77
  56. {hiplot_mm-0.0.1.dist-info → hiplot_mm-0.0.3rc0.dist-info/licenses}/LICENSE +0 -0
  57. {hiplot_mm-0.0.1.dist-info → hiplot_mm-0.0.3rc0.dist-info/licenses}/NOTICE +0 -0
  58. {hiplot_mm-0.0.1.dist-info → hiplot_mm-0.0.3rc0.dist-info}/top_level.txt +0 -0
@@ -1,64 +0,0 @@
1
- export interface Datapoint {
2
- uid: string;
3
- from_uid: string | null;
4
- [key: string]: any;
5
- }
6
- export interface DatapointLookup {
7
- [key: string]: Datapoint;
8
- }
9
- export interface IDatasets {
10
- rows_all_unfiltered: Array<Datapoint>;
11
- rows_filtered: Array<Datapoint>;
12
- rows_selected: Array<Datapoint>;
13
- rows_highlighted: Array<Datapoint>;
14
- }
15
- export declare enum ParamType {
16
- CATEGORICAL = "categorical",
17
- NUMERIC = "numeric",
18
- NUMERICLOG = "numericlog",
19
- NUMERICPERCENTILE = "numericpercentile",
20
- TIMESTAMP = "timestamp"
21
- }
22
- export interface HiPlotValueDef {
23
- type: ParamType;
24
- colors: {
25
- [value: string]: string;
26
- };
27
- colormap: string | null;
28
- force_value_min: number | null;
29
- force_value_max: number | null;
30
- label_css: string | null;
31
- label_html: string | null;
32
- }
33
- export interface DatapointsCompressed {
34
- columns: Array<string>;
35
- rows: Array<Array<any>>;
36
- }
37
- export interface HiPlotExperiment {
38
- datapoints: Array<Datapoint>;
39
- datapoints_compressed?: DatapointsCompressed;
40
- parameters_definition?: {
41
- [key: string]: HiPlotValueDef;
42
- };
43
- colormap?: string;
44
- colorby?: string;
45
- weightcolumn?: string;
46
- display_data?: {
47
- [key: string]: {
48
- [key2: string]: any;
49
- };
50
- };
51
- enabled_displays?: Array<string>;
52
- }
53
- export declare class Experiment {
54
- static from_iterable(values: object[]): HiPlotExperiment;
55
- }
56
- export declare enum HiPlotLoadStatus {
57
- None = 0,
58
- Loading = 1,
59
- Loaded = 2,
60
- Error = 3
61
- }
62
- export declare const PSTATE_COLOR_BY = "color_by";
63
- export declare const PSTATE_PARAMS = "params";
64
- export declare const PSTATE_FILTERS = "filters";
@@ -1,55 +0,0 @@
1
- /*
2
- * Copyright (c) Facebook, Inc. and its affiliates.
3
- *
4
- * This source code is licensed under the MIT license found in the
5
- * LICENSE file in the root directory of this source tree.
6
- */
7
- ;
8
- ;
9
- ;
10
- export var ParamType;
11
- (function (ParamType) {
12
- ParamType["CATEGORICAL"] = "categorical";
13
- ParamType["NUMERIC"] = "numeric";
14
- ParamType["NUMERICLOG"] = "numericlog";
15
- ParamType["NUMERICPERCENTILE"] = "numericpercentile";
16
- ParamType["TIMESTAMP"] = "timestamp";
17
- })(ParamType || (ParamType = {}));
18
- ;
19
- ;
20
- ;
21
- var Experiment = /** @class */ (function () {
22
- function Experiment() {
23
- }
24
- Experiment.from_iterable = function (values) {
25
- return {
26
- datapoints: values.map(function (raw_row, index) {
27
- var uid = raw_row['uid'] !== undefined ? raw_row['uid'] : "" + index;
28
- var from_uid = raw_row['from_uid'] !== undefined ? raw_row['from_uid'] : null;
29
- var values = Object.assign({}, raw_row);
30
- delete values['uid'];
31
- delete values['from_uid'];
32
- return {
33
- uid: uid,
34
- from_uid: from_uid,
35
- values: values
36
- };
37
- }),
38
- parameters_definition: {},
39
- display_data: {}
40
- };
41
- };
42
- return Experiment;
43
- }());
44
- export { Experiment };
45
- export var HiPlotLoadStatus;
46
- (function (HiPlotLoadStatus) {
47
- HiPlotLoadStatus[HiPlotLoadStatus["None"] = 0] = "None";
48
- HiPlotLoadStatus[HiPlotLoadStatus["Loading"] = 1] = "Loading";
49
- HiPlotLoadStatus[HiPlotLoadStatus["Loaded"] = 2] = "Loaded";
50
- HiPlotLoadStatus[HiPlotLoadStatus["Error"] = 3] = "Error";
51
- })(HiPlotLoadStatus || (HiPlotLoadStatus = {}));
52
- ;
53
- export var PSTATE_COLOR_BY = 'color_by';
54
- export var PSTATE_PARAMS = 'params';
55
- export var PSTATE_FILTERS = 'filters';
@@ -1,77 +0,0 @@
1
- hiplot/__init__.py,sha256=ZioLWYAwqgLk99RZ1-CqLnxZ35HEytcBHMOARShZNrg,893
2
- hiplot/__main__.py,sha256=iTsr-pqySeHZ1_Uk-F0O5BOsVJjWslG7z2YZm2KkFpE,283
3
- hiplot/compress.py,sha256=9J2rLJVtZX-EHjdySsGekA0LeOxpmwaB8SnsLA1esco,964
4
- hiplot/experiment.py,sha256=d00uvhw-yrMES9IZ0sk9yFL9FwNV_KTPrq11cIyEVA4,24652
5
- hiplot/fetchers.py,sha256=yWrjxZxizlHbJyTEmbQpJPUVuSXwRH0PNj4Leq7HZ38,11570
6
- hiplot/fetchers_demo.py,sha256=CCEgZlBzknEGWJSsZGraZEOs5mI437tC4n-5nzBL91I,13014
7
- hiplot/ipython.py,sha256=yRbZr-qQyGSbO1mdbhMZy25rr747S0QHMj9u2XZ0poo,6820
8
- hiplot/pkginfo.py,sha256=H77oWT8FUu6eyCDr9RcA14v2r7k1kIGOOt5S30FuGYo,243
9
- hiplot/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
- hiplot/render.py,sha256=l5idAf75n6LRupcRhwXwTYpNbgUM-eK6JMTb0_Wjr50,3723
11
- hiplot/server.py,sha256=8d9Ta1p6iDogEkOVnkxkPyRJKHq2c2Ag0cIdK0AxO_8,2219
12
- hiplot/streamlit_helpers.py,sha256=RJIBc1eyCleaTiSG7ib6_xorsqvfQvfgl9uhDUpVvU8,4881
13
- hiplot/test_experiment.py,sha256=dOFpq6qEjexvRRGOkpNjWzrDpcVw8ckCOktCGJFdUr0,6748
14
- hiplot/test_fetchers.py,sha256=zXMN15E22_yNUU_YPcKWx9L4XAyZi1I1yr30cBlmkB0,2208
15
- hiplot/test_render.py,sha256=-HUJqFoiSuWAyHG4TE9VwPzfYa2Khf6qMnBTo93cjsM,2141
16
- hiplot/static/icon-w.svg,sha256=0hfr9tMtWZPOS_GXVOE3s03I4JZ9WFBn7RyyOW9GN0w,1160
17
- hiplot/static/icon.png,sha256=hSllX0zW4r-6Cn8nqfiG9WbkGFU0HE3fTQyjBLg0dXE,21466
18
- hiplot/static/icon.svg,sha256=MDyI5uC4n5FAmMKKqNBmUUhigmxDnjmEeB6FtuSTBGI,1151
19
- hiplot/static/logo-w.svg,sha256=Ptvs98gsgr0Qk12LnbglQKx2lSfs6Hc4TUTx6Mk9hF0,2274
20
- hiplot/static/logo.png,sha256=Rd7cq4aMlvQmSrL5OKrOWcucDngQgkt5ZUUKO2i4uRE,15653
21
- hiplot/static/logo.svg,sha256=vzVSSRpfkuCMuW3RhmrwRk9JkKb2YtHeQIO9f_LFW1k,2265
22
- hiplot/static/thumbnail.png,sha256=SX3sY85PxZ5y0LbPWzoSWGXHvU-fgBBZgW7zxMT_3hk,45290
23
- hiplot/static/built/component.d.ts,sha256=TPMEFYM3399R-w-IOOYmKfSkL-NB4d6LjysGKdKswPI,4093
24
- hiplot/static/built/component.js,sha256=V8GqjlsOTcX7ZOfwwvea2WX_KKRu3NdGXxMspA6sUUY,25067
25
- hiplot/static/built/contextmenu.d.ts,sha256=WlUiv3YcKuQ-gefN5Et0kr2vbyDbD6VwmMJA_yf66rc,886
26
- hiplot/static/built/contextmenu.js,sha256=Z9jcUZQ_qEueL2Ys-UTWuDsFaR32mjZuittuFCiFzXI,3479
27
- hiplot/static/built/controls.d.ts,sha256=aIQrJ3B7haUEazOGq-ZG4KF0LhVaFDZ1Ns_MsP5THk4,1675
28
- hiplot/static/built/controls.js,sha256=3bngUlBWAXdI30Cgycf9gcgVMcrhlYYxuMhAj7OT8Zo,6568
29
- hiplot/static/built/filters.d.ts,sha256=DEmzpv85sMQOjNTncwymD20YbD323dROkkRwKWZdtds,560
30
- hiplot/static/built/filters.js,sha256=_ZyHQoyeGijC9wS-5-XPtp3MkHeA-WSSth5Q1gVGVe0,2986
31
- hiplot/static/built/header.d.ts,sha256=C6OhV21l69I94e2tDZ2nu-6T_iR13_RuPMeYR7EK3ZI,1380
32
- hiplot/static/built/header.js,sha256=FCkj5RWfmQP96wm4rNT5AvnBc0L8Qtx3JH6o6JNWtkM,9026
33
- hiplot/static/built/hiplot-mm-0.0.0.tar.gz,sha256=C9zEA6iNVZcTMfacgO3_O2GJhL63Sdpll4iPFtmFvbc,5086106
34
- hiplot/static/built/hiplot.bundle.js,sha256=rVOgQeDhzp1vmkFCbIZ_GLdNtMwPehpsy6_6XTqoK-U,1614419
35
- hiplot/static/built/hiplot.bundle.js.LICENSE.txt,sha256=0fOVvZbynB0HNHi4HsAZn8gx3r1_O2EAwhGByuiNiwk,2043
36
- hiplot/static/built/hiplot.bundle.js.map,sha256=5YNopMiw5LwaG2Sqv9A0NY3E-7BtxaNyuJNPf-B5qXk,4683463
37
- hiplot/static/built/hiplot.d.ts,sha256=ikClReHp6q5eLrCL-eow4VUdOPVTNjjfO0OWspVqic0,606
38
- hiplot/static/built/hiplot.js,sha256=PB7WnpKOhIZrJyGvjcJT7fqPzQdtVXNMKK9_QUnEFbc,642
39
- hiplot/static/built/hiplot.lib.js,sha256=hdFnnTjE_p1PFREcmuh5Rz0CovuEeHm_0iiG0nL3gGE,3064451
40
- hiplot/static/built/hiplot.lib.js.map,sha256=05sFueZBfGixndi5EGCFUobRbQW89cnWkBMeHAJK20E,3635608
41
- hiplot/static/built/hiplot.licenses.txt,sha256=h7yMYIEcZhr-MKJojTolBu-PC1-PDQqEnE4Mu6KsNqY,30735
42
- hiplot/static/built/hiplot_mm-0.0.0-py3-none-any.whl,sha256=hAwh4gXm0h0-AgK1LA7sP2t2dStO0HUe4-UhODXHSkw,5144836
43
- hiplot/static/built/hiplot_streamlit.bundle.js,sha256=oLtMEONo9jq5rALCOgorW7oFvl-_beHSxG5fxLKBZR0,1598994
44
- hiplot/static/built/hiplot_streamlit.bundle.js.LICENSE.txt,sha256=ERfze3MZGNx0wjBs-kVLUTChyAU6KPVKYP5Md409vDw,2290
45
- hiplot/static/built/hiplot_streamlit.bundle.js.map,sha256=omDkMu2MMMnqupOMGT6YiL0WWwlQCdk9jQxSUpwK6EU,4598906
46
- hiplot/static/built/hiplot_streamlit.d.ts,sha256=jmCbtxwguFjHfw6fkLsTGduEd7E_n5ZfGh4YUkv1CIE,11
47
- hiplot/static/built/hiplot_streamlit.js,sha256=dpptTD38pjKSQgpu0t4v_WmX6SWmDR-f5Ku5RfJYQOw,3586
48
- hiplot/static/built/hiplot_streamlit.licenses.txt,sha256=-kSJBLE0DlPhcFOIEiXQCmfoD3zZkFQm4UiMAs2jo9k,31334
49
- hiplot/static/built/hiplot_test.bundle.js,sha256=Oto8Q7pGuYKUVkAlT8G3ODEPCXYFek35yHTz2rtgGo8,1622219
50
- hiplot/static/built/hiplot_test.bundle.js.LICENSE.txt,sha256=0fOVvZbynB0HNHi4HsAZn8gx3r1_O2EAwhGByuiNiwk,2043
51
- hiplot/static/built/hiplot_test.bundle.js.map,sha256=1NjyOn4zR7P7qmTUwk3PNZJcSGZhwLd6ezn5PYrEJh0,4702208
52
- hiplot/static/built/hiplot_test.d.ts,sha256=bHpJwjJ1ghZA3Dg5snkRmdYZra5_0DdLr3D5MI9ObHM,1279
53
- hiplot/static/built/hiplot_test.js,sha256=65k_ykv_vbuVUovoT8ywO1pjR8XX-FEZYFC8DCb7U8o,10755
54
- hiplot/static/built/hiplot_test.licenses.txt,sha256=h7yMYIEcZhr-MKJojTolBu-PC1-PDQqEnE4Mu6KsNqY,30735
55
- hiplot/static/built/hiplot_web.d.ts,sha256=fWRSL4FEB2fNO425oi7GYRqWn1uHwDIb_Stnub7GpZE,179
56
- hiplot/static/built/hiplot_web.js,sha256=FawY542HifblmPuSdDhyT4Y1nknsHrNfS1xOImLhzMo,1935
57
- hiplot/static/built/infertypes.d.ts,sha256=yQhg79Tpu54TaTljiqsfUtLPA4V-daQn8P9d9oHB-Xs,1318
58
- hiplot/static/built/infertypes.js,sha256=BLn9OqUJdILFe-6F7-YQZpr39gG5-wgllnZcmeyqyuw,12533
59
- hiplot/static/built/plotxy.d.ts,sha256=Q_OXJzv-vJ8joTu4TRy4vmQ-xl34aPkd5qXR7gicUBI,1930
60
- hiplot/static/built/plotxy.js,sha256=tR2Dq5HAx5pu1PZgPp4LpfNwtW6V7rLalNgCWt7sa3w,27151
61
- hiplot/static/built/plugin.d.ts,sha256=KPeI99qQdg2BPOO3hqI9eqgdKCpP11XZ2M9SBlJunmg,1683
62
- hiplot/static/built/plugin.js,sha256=GAuHMMWx0cBaxs6PoPaF1GpKLwbMqteoNOeTKUvlTVg,192
63
- hiplot/static/built/rowsdisplaytable.d.ts,sha256=e9Hh5QWka46kv_t2IoLf9G49MGg94q8OW8H8Sand7zc,1158
64
- hiplot/static/built/rowsdisplaytable.js,sha256=FjIIZeor-SSuCUiuhHbdknb5Ai1p_-iBKeU2PFc7lb8,11327
65
- hiplot/static/built/types.d.ts,sha256=jIHxFmKd_vn2QEWpqBhOOARDX3Ru6up6WahqNp1LCLA,1676
66
- hiplot/static/built/types.js,sha256=WQU-EbGvszmiAiTXC4hK-kM3L8iVBAk_TSR2IaGRt6A,1826
67
- hiplot/static/built/streamlit_component/hiplot.bundle.js,sha256=N_YcehV-yOjmjYlGIBMbLhg4MHAI-lRiCvFefTykGHA,1616094
68
- hiplot/static/built/streamlit_component/hiplot_streamlit.bundle.js,sha256=gSA4R3aNyVELyly-lkLfWD97xHzY5E_oqK4xvZTSMo8,1597319
69
- hiplot/static/built/streamlit_component/index.html,sha256=9zbuZu0iE1vFr2cy0ulrP3l34i8W_3-Mkl_JCPVq-tc,512
70
- hiplot/templates/index.html,sha256=cwt7fGGdz3UHxHZAh3EMnudmwMauGV7Jp8YOUxtSFPE,1281
71
- hiplot_mm-0.0.1.dist-info/LICENSE,sha256=UkEte8fOQVfqYou6rLiCngqcs8WPV_mRdhJryM8r_IU,1086
72
- hiplot_mm-0.0.1.dist-info/METADATA,sha256=y6X4AVhZB8H8qtbJoUTA3Ms4ei3zceUbrBMl471dTnI,5013
73
- hiplot_mm-0.0.1.dist-info/NOTICE,sha256=BgJexxrr6wJp6w2Sh51mRAiLn1ymNC5o6F5KrnUV8Do,11609
74
- hiplot_mm-0.0.1.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
75
- hiplot_mm-0.0.1.dist-info/entry_points.txt,sha256=At_cbvxYWt5W4sTyKU-g-S6safCjbMIBCV5F7xlyNHk,107
76
- hiplot_mm-0.0.1.dist-info/top_level.txt,sha256=J1kKpj7DXS676kMWcep6U8rHfAHrL1YQWAwhjcHMpMU,7
77
- hiplot_mm-0.0.1.dist-info/RECORD,,