-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAnalysis.nb
16334 lines (16102 loc) · 817 KB
/
Analysis.nb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(* Content-type: application/vnd.wolfram.mathematica *)
(*** Wolfram Notebook File ***)
(* http://www.wolfram.com/nb *)
(* CreatedBy='Mathematica 13.0' *)
(*CacheID: 234*)
(* Internal cache information:
NotebookFileLineBreakTest
NotebookFileLineBreakTest
NotebookDataPosition[ 158, 7]
NotebookDataLength[ 836479, 16326]
NotebookOptionsPosition[ 829621, 16211]
NotebookOutlinePosition[ 830059, 16228]
CellTagsIndexPosition[ 830016, 16225]
WindowFrame->Normal*)
(* Beginning of Notebook Content *)
Notebook[{
Cell[CellGroupData[{
Cell[BoxData[
RowBox[{"ds", " ", "=", " ",
RowBox[{"Import", "[",
RowBox[{
"\"\</home/flexagoon/Documents/Events/Public/Olympiads/DANO/2023/\:0425\
\:0430\:043a\:0430\:0442\:043e\:043d/holidays.csv\>\"", ",", " ",
"\"\<Dataset\>\"", ",", " ",
RowBox[{"\"\<HeaderLines\>\"", "->", "1"}]}], "]"}]}]], "Input",
InitializationCell->True,
CellChangeTimes->{{3.894188753757758*^9, 3.8941887789116917`*^9}, {
3.8942575202249413`*^9, 3.8942575223183928`*^9}},
CellLabel->
"In[388]:=",ExpressionUUID->"bff23ea3-ebc9-43ba-9b3e-8da5adad4bb5"],
Cell[BoxData[
TagBox[
TemplateBox[{
TagBox[
DynamicModuleBox[{
TypeSystem`NestedGrid`PackagePrivate`$state$$ = <|
"InitialData" ->
TypeSystem`CacheKey[
6988318372462098367564254426404760410547001927633774282600],
"AllowEmbedding" -> True, "InitialShape" ->
TypeSystem`PackageScope`HeaderShape[<|{All, "user_id"} ->
1, {All, "sex"} -> 1, {All, "age"} -> 1, {All, "region"} ->
1, {All, "bundle"} -> 1, {All, "num_sessions"} ->
1, {All, "avg_session"} -> 1, {All, "service"} ->
1, {All, "order_date"} -> 1, {All, "price"} -> 1, {All, "fuel"} ->
1, {All, "cinema"} -> 1, {All, "vkusvill"} -> 1, {All, "travel"} ->
1, {All, "restaurants"} -> 1, {All, "concerts"} ->
1, {All, "games"} -> 1, {All, "books"} -> 1, {All, "theater"} ->
1, {All, "sports"} -> 1, {All, "beauty"} -> 1, {All, "flowers"} ->
1, {All, "technology"} -> 1, {All, "day_of_week"} ->
1, {All, "is_holiday"} -> 1, {All, "temperature"} ->
1, {All, "rain"} -> 1|>,
TypeSystem`PackageScope`Limited[
TypeSystem`PackageScope`ColumnShape[
TypeSystem`PackageScope`Limited[
TypeSystem`PackageScope`RowShape[<|
"user_id" -> TypeSystem`PackageScope`AtomShape[34], "sex" ->
TypeSystem`PackageScope`AtomShape[33.6], "age" ->
TypeSystem`PackageScope`AtomShape[34], "region" ->
TypeSystem`PackageScope`AtomShape[235.20000000000002`],
"bundle" ->
TypeSystem`PackageScope`AtomShape[100.80000000000001`],
"num_sessions" -> TypeSystem`PackageScope`UnknownShape[False],
"avg_session" -> TypeSystem`PackageScope`UnknownShape[False],
"service" ->
TypeSystem`PackageScope`AtomShape[123.20000000000002`],
"order_date" ->
TypeSystem`PackageScope`AtomShape[112.00000000000001`],
"price" -> TypeSystem`PackageScope`AtomShape[34], "fuel" ->
TypeSystem`PackageScope`AtomShape[34], "cinema" ->
TypeSystem`PackageScope`AtomShape[34], "vkusvill" ->
TypeSystem`PackageScope`AtomShape[34], "travel" ->
TypeSystem`PackageScope`AtomShape[34], "restaurants" ->
TypeSystem`PackageScope`AtomShape[34], "concerts" ->
TypeSystem`PackageScope`AtomShape[34], "games" ->
TypeSystem`PackageScope`AtomShape[34], "books" ->
TypeSystem`PackageScope`AtomShape[34], "theater" ->
TypeSystem`PackageScope`AtomShape[34], "sports" ->
TypeSystem`PackageScope`AtomShape[34], "beauty" ->
TypeSystem`PackageScope`AtomShape[34], "flowers" ->
TypeSystem`PackageScope`AtomShape[34], "technology" ->
TypeSystem`PackageScope`AtomShape[34], "day_of_week" ->
TypeSystem`PackageScope`AtomShape[34], "is_holiday" ->
TypeSystem`PackageScope`AtomShape[34], "temperature" ->
TypeSystem`PackageScope`UnknownShape[False], "rain" ->
TypeSystem`PackageScope`UnknownShape[False]|>],
DirectedInfinity[1], 10, {All}]], 20,
DirectedInfinity[1], {}]], "InitialType" -> TypeSystem`Vector[
TypeSystem`Struct[{
"user_id", "sex", "age", "region", "bundle", "num_sessions",
"avg_session", "service", "order_date", "price", "fuel",
"cinema", "vkusvill", "travel", "restaurants", "concerts",
"games", "books", "theater", "sports", "beauty", "flowers",
"technology", "day_of_week", "is_holiday", "temperature",
"rain"}, {
TypeSystem`Atom[Integer],
TypeSystem`Atom[String],
TypeSystem`Atom[Integer],
TypeSystem`Atom[String],
TypeSystem`Atom[String], TypeSystem`AnyType, TypeSystem`AnyType,
TypeSystem`Atom[String],
TypeSystem`Atom[String],
TypeSystem`Atom[Integer],
TypeSystem`Atom[Integer],
TypeSystem`Atom[Integer],
TypeSystem`Atom[Integer],
TypeSystem`Atom[Integer],
TypeSystem`Atom[Integer],
TypeSystem`Atom[Integer],
TypeSystem`Atom[Integer],
TypeSystem`Atom[Integer],
TypeSystem`Atom[Integer],
TypeSystem`Atom[Integer],
TypeSystem`Atom[Integer],
TypeSystem`Atom[Integer],
TypeSystem`Atom[Integer],
TypeSystem`Atom[Integer],
TypeSystem`Atom[Integer], TypeSystem`AnyType,
TypeSystem`AnyType}], 24721], "Meta" -> <||>, "RowTarget" -> 20,
"ColumnTarget" -> 10, "Shape" ->
TypeSystem`PackageScope`HeaderShape[<|{All, "user_id"} ->
1, {All, "sex"} -> 1, {All, "age"} -> 1, {All, "region"} ->
1, {All, "bundle"} -> 1, {All, "num_sessions"} ->
1, {All, "avg_session"} -> 1, {All, "service"} ->
1, {All, "order_date"} -> 1, {All, "price"} -> 1, {All, "fuel"} ->
1, {All, "cinema"} -> 1, {All, "vkusvill"} -> 1, {All, "travel"} ->
1, {All, "restaurants"} -> 1, {All, "concerts"} ->
1, {All, "games"} -> 1, {All, "books"} -> 1, {All, "theater"} ->
1, {All, "sports"} -> 1, {All, "beauty"} -> 1, {All, "flowers"} ->
1, {All, "technology"} -> 1, {All, "day_of_week"} ->
1, {All, "is_holiday"} -> 1, {All, "temperature"} ->
1, {All, "rain"} -> 1|>,
TypeSystem`PackageScope`Limited[
TypeSystem`PackageScope`ColumnShape[
TypeSystem`PackageScope`Limited[
TypeSystem`PackageScope`RowShape[<|
"user_id" -> TypeSystem`PackageScope`AtomShape[34], "sex" ->
TypeSystem`PackageScope`AtomShape[33.6], "age" ->
TypeSystem`PackageScope`AtomShape[34], "region" ->
TypeSystem`PackageScope`AtomShape[235.20000000000002`],
"bundle" ->
TypeSystem`PackageScope`AtomShape[100.80000000000001`],
"num_sessions" -> TypeSystem`PackageScope`UnknownShape[False],
"avg_session" -> TypeSystem`PackageScope`UnknownShape[False],
"service" ->
TypeSystem`PackageScope`AtomShape[123.20000000000002`],
"order_date" ->
TypeSystem`PackageScope`AtomShape[112.00000000000001`],
"price" -> TypeSystem`PackageScope`AtomShape[34], "fuel" ->
TypeSystem`PackageScope`AtomShape[34], "cinema" ->
TypeSystem`PackageScope`AtomShape[34], "vkusvill" ->
TypeSystem`PackageScope`AtomShape[34], "travel" ->
TypeSystem`PackageScope`AtomShape[34], "restaurants" ->
TypeSystem`PackageScope`AtomShape[34], "concerts" ->
TypeSystem`PackageScope`AtomShape[34], "games" ->
TypeSystem`PackageScope`AtomShape[34], "books" ->
TypeSystem`PackageScope`AtomShape[34], "theater" ->
TypeSystem`PackageScope`AtomShape[34], "sports" ->
TypeSystem`PackageScope`AtomShape[34], "beauty" ->
TypeSystem`PackageScope`AtomShape[34], "flowers" ->
TypeSystem`PackageScope`AtomShape[34], "technology" ->
TypeSystem`PackageScope`AtomShape[34], "day_of_week" ->
TypeSystem`PackageScope`AtomShape[34], "is_holiday" ->
TypeSystem`PackageScope`AtomShape[34], "temperature" ->
TypeSystem`PackageScope`UnknownShape[False], "rain" ->
TypeSystem`PackageScope`UnknownShape[False]|>],
DirectedInfinity[1], 10, {All}]], 20,
DirectedInfinity[1], {}]], "Type" -> TypeSystem`Vector[
TypeSystem`Struct[{
"user_id", "sex", "age", "region", "bundle", "num_sessions",
"avg_session", "service", "order_date", "price", "fuel",
"cinema", "vkusvill", "travel", "restaurants", "concerts",
"games", "books", "theater", "sports", "beauty", "flowers",
"technology", "day_of_week", "is_holiday", "temperature",
"rain"}, {
TypeSystem`Atom[Integer],
TypeSystem`Atom[String],
TypeSystem`Atom[Integer],
TypeSystem`Atom[String],
TypeSystem`Atom[String], TypeSystem`AnyType, TypeSystem`AnyType,
TypeSystem`Atom[String],
TypeSystem`Atom[String],
TypeSystem`Atom[Integer],
TypeSystem`Atom[Integer],
TypeSystem`Atom[Integer],
TypeSystem`Atom[Integer],
TypeSystem`Atom[Integer],
TypeSystem`Atom[Integer],
TypeSystem`Atom[Integer],
TypeSystem`Atom[Integer],
TypeSystem`Atom[Integer],
TypeSystem`Atom[Integer],
TypeSystem`Atom[Integer],
TypeSystem`Atom[Integer],
TypeSystem`Atom[Integer],
TypeSystem`Atom[Integer],
TypeSystem`Atom[Integer],
TypeSystem`Atom[Integer], TypeSystem`AnyType,
TypeSystem`AnyType}], 24721], "Path" -> {}, "DisplayedRowCount" ->
20, "DisplayedColumnCount" -> 10, "DataRowCount" -> 24721,
"DataColumnCount" -> 27, "SortPaths" -> {}, "SortDirections" -> {},
"HiddenItemsMap" -> Null, "UpdateType" -> 1|>,
TypeSystem`NestedGrid`PackagePrivate`$outputID$$,
TypeSystem`NestedGrid`PackagePrivate`$path$$ = {},
TypeSystem`NestedGrid`PackagePrivate`$vPos$$ = 1,
TypeSystem`NestedGrid`PackagePrivate`$hPos$$ = 1,
TypeSystem`NestedGrid`PackagePrivate`$grid$$ =
DynamicModule[{
TypeSystem`NestedGrid`PackagePrivate`renderedGrid = Deploy[
Style[
Grid[{{
Item[
Pane[
Annotation[
EventHandler[
MouseAppearance[
Mouseover["user_id",
Style[
"user_id", FontColor ->
RGBColor[
0.27450980392156865`, 0.5372549019607843,
0.792156862745098]]], "LinkHand"], {"MouseClicked", 1} :>
If[
TypeSystem`NestedGrid`PackagePrivate`checkInteractivity[
TypeSystem`NestedGrid`PackagePrivate`$state$$],
TypeSystem`NestedGrid`PackagePrivate`updateState[
TypeSystem`NestedGrid`PackagePrivate`$state$$,
TypeSystem`NestedGrid`PackagePrivate`$path$$,
TypeSystem`NestedGrid`PackagePrivate`$vPos$$,
TypeSystem`NestedGrid`PackagePrivate`$hPos$$,
TypeSystem`NestedGrid`PackagePrivate`$grid$$,
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]]][{
All, "user_id"}, 1]]],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{
All, "user_id"}, "ColumnHeader", True], "Mouse"],
ImageSize -> {{1, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}], Background ->
GrayLevel[0.95], Alignment -> {Left, Baseline}],
Item[
Pane[
Annotation[
EventHandler[
MouseAppearance[
Mouseover["sex",
Style[
"sex", FontColor ->
RGBColor[
0.27450980392156865`, 0.5372549019607843,
0.792156862745098]]], "LinkHand"], {"MouseClicked", 1} :>
If[
TypeSystem`NestedGrid`PackagePrivate`checkInteractivity[
TypeSystem`NestedGrid`PackagePrivate`$state$$],
TypeSystem`NestedGrid`PackagePrivate`updateState[
TypeSystem`NestedGrid`PackagePrivate`$state$$,
TypeSystem`NestedGrid`PackagePrivate`$path$$,
TypeSystem`NestedGrid`PackagePrivate`$vPos$$,
TypeSystem`NestedGrid`PackagePrivate`$hPos$$,
TypeSystem`NestedGrid`PackagePrivate`$grid$$,
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]]][{
All, "sex"}, 1]]],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{
All, "sex"}, "ColumnHeader", True], "Mouse"],
ImageSize -> {{1, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}], Background ->
GrayLevel[0.95], Alignment -> {Left, Baseline}],
Item[
Pane[
Annotation[
EventHandler[
MouseAppearance[
Mouseover["age",
Style[
"age", FontColor ->
RGBColor[
0.27450980392156865`, 0.5372549019607843,
0.792156862745098]]], "LinkHand"], {"MouseClicked", 1} :>
If[
TypeSystem`NestedGrid`PackagePrivate`checkInteractivity[
TypeSystem`NestedGrid`PackagePrivate`$state$$],
TypeSystem`NestedGrid`PackagePrivate`updateState[
TypeSystem`NestedGrid`PackagePrivate`$state$$,
TypeSystem`NestedGrid`PackagePrivate`$path$$,
TypeSystem`NestedGrid`PackagePrivate`$vPos$$,
TypeSystem`NestedGrid`PackagePrivate`$hPos$$,
TypeSystem`NestedGrid`PackagePrivate`$grid$$,
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]]][{
All, "age"}, 1]]],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{
All, "age"}, "ColumnHeader", True], "Mouse"],
ImageSize -> {{1, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}], Background ->
GrayLevel[0.95], Alignment -> {Left, Baseline}],
Item[
Pane[
Annotation[
EventHandler[
MouseAppearance[
Mouseover["region",
Style[
"region", FontColor ->
RGBColor[
0.27450980392156865`, 0.5372549019607843,
0.792156862745098]]], "LinkHand"], {"MouseClicked", 1} :>
If[
TypeSystem`NestedGrid`PackagePrivate`checkInteractivity[
TypeSystem`NestedGrid`PackagePrivate`$state$$],
TypeSystem`NestedGrid`PackagePrivate`updateState[
TypeSystem`NestedGrid`PackagePrivate`$state$$,
TypeSystem`NestedGrid`PackagePrivate`$path$$,
TypeSystem`NestedGrid`PackagePrivate`$vPos$$,
TypeSystem`NestedGrid`PackagePrivate`$hPos$$,
TypeSystem`NestedGrid`PackagePrivate`$grid$$,
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]]][{
All, "region"}, 1]]],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{
All, "region"}, "ColumnHeader", True], "Mouse"],
ImageSize -> {{1, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}], Background ->
GrayLevel[0.95], Alignment -> {Left, Baseline}],
Item[
Pane[
Annotation[
EventHandler[
MouseAppearance[
Mouseover["bundle",
Style[
"bundle", FontColor ->
RGBColor[
0.27450980392156865`, 0.5372549019607843,
0.792156862745098]]], "LinkHand"], {"MouseClicked", 1} :>
If[
TypeSystem`NestedGrid`PackagePrivate`checkInteractivity[
TypeSystem`NestedGrid`PackagePrivate`$state$$],
TypeSystem`NestedGrid`PackagePrivate`updateState[
TypeSystem`NestedGrid`PackagePrivate`$state$$,
TypeSystem`NestedGrid`PackagePrivate`$path$$,
TypeSystem`NestedGrid`PackagePrivate`$vPos$$,
TypeSystem`NestedGrid`PackagePrivate`$hPos$$,
TypeSystem`NestedGrid`PackagePrivate`$grid$$,
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]]][{
All, "bundle"}, 1]]],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{
All, "bundle"}, "ColumnHeader", True], "Mouse"],
ImageSize -> {{1, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}], Background ->
GrayLevel[0.95], Alignment -> {Left, Baseline}],
Item[
Pane[
Annotation[
EventHandler[
MouseAppearance[
Mouseover["num_sessions",
Style[
"num_sessions", FontColor ->
RGBColor[
0.27450980392156865`, 0.5372549019607843,
0.792156862745098]]], "LinkHand"], {"MouseClicked", 1} :>
If[
TypeSystem`NestedGrid`PackagePrivate`checkInteractivity[
TypeSystem`NestedGrid`PackagePrivate`$state$$],
TypeSystem`NestedGrid`PackagePrivate`updateState[
TypeSystem`NestedGrid`PackagePrivate`$state$$,
TypeSystem`NestedGrid`PackagePrivate`$path$$,
TypeSystem`NestedGrid`PackagePrivate`$vPos$$,
TypeSystem`NestedGrid`PackagePrivate`$hPos$$,
TypeSystem`NestedGrid`PackagePrivate`$grid$$,
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]]][{
All, "num_sessions"}, 1]]],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{
All, "num_sessions"}, "ColumnHeader", True], "Mouse"],
ImageSize -> {{1, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}], Background ->
GrayLevel[0.95], Alignment -> {Left, Baseline}],
Item[
Pane[
Annotation[
EventHandler[
MouseAppearance[
Mouseover["avg_session",
Style[
"avg_session", FontColor ->
RGBColor[
0.27450980392156865`, 0.5372549019607843,
0.792156862745098]]], "LinkHand"], {"MouseClicked", 1} :>
If[
TypeSystem`NestedGrid`PackagePrivate`checkInteractivity[
TypeSystem`NestedGrid`PackagePrivate`$state$$],
TypeSystem`NestedGrid`PackagePrivate`updateState[
TypeSystem`NestedGrid`PackagePrivate`$state$$,
TypeSystem`NestedGrid`PackagePrivate`$path$$,
TypeSystem`NestedGrid`PackagePrivate`$vPos$$,
TypeSystem`NestedGrid`PackagePrivate`$hPos$$,
TypeSystem`NestedGrid`PackagePrivate`$grid$$,
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]]][{
All, "avg_session"}, 1]]],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{
All, "avg_session"}, "ColumnHeader", True], "Mouse"],
ImageSize -> {{1, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}], Background ->
GrayLevel[0.95], Alignment -> {Left, Baseline}],
Item[
Pane[
Annotation[
EventHandler[
MouseAppearance[
Mouseover["service",
Style[
"service", FontColor ->
RGBColor[
0.27450980392156865`, 0.5372549019607843,
0.792156862745098]]], "LinkHand"], {"MouseClicked", 1} :>
If[
TypeSystem`NestedGrid`PackagePrivate`checkInteractivity[
TypeSystem`NestedGrid`PackagePrivate`$state$$],
TypeSystem`NestedGrid`PackagePrivate`updateState[
TypeSystem`NestedGrid`PackagePrivate`$state$$,
TypeSystem`NestedGrid`PackagePrivate`$path$$,
TypeSystem`NestedGrid`PackagePrivate`$vPos$$,
TypeSystem`NestedGrid`PackagePrivate`$hPos$$,
TypeSystem`NestedGrid`PackagePrivate`$grid$$,
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]]][{
All, "service"}, 1]]],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{
All, "service"}, "ColumnHeader", True], "Mouse"],
ImageSize -> {{1, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}], Background ->
GrayLevel[0.95], Alignment -> {Left, Baseline}],
Item[
Pane[
Annotation[
EventHandler[
MouseAppearance[
Mouseover["order_date",
Style[
"order_date", FontColor ->
RGBColor[
0.27450980392156865`, 0.5372549019607843,
0.792156862745098]]], "LinkHand"], {"MouseClicked", 1} :>
If[
TypeSystem`NestedGrid`PackagePrivate`checkInteractivity[
TypeSystem`NestedGrid`PackagePrivate`$state$$],
TypeSystem`NestedGrid`PackagePrivate`updateState[
TypeSystem`NestedGrid`PackagePrivate`$state$$,
TypeSystem`NestedGrid`PackagePrivate`$path$$,
TypeSystem`NestedGrid`PackagePrivate`$vPos$$,
TypeSystem`NestedGrid`PackagePrivate`$hPos$$,
TypeSystem`NestedGrid`PackagePrivate`$grid$$,
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]]][{
All, "order_date"}, 1]]],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{
All, "order_date"}, "ColumnHeader", True], "Mouse"],
ImageSize -> {{1, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}], Background ->
GrayLevel[0.95], Alignment -> {Left, Baseline}],
Item[
Pane[
Annotation[
EventHandler[
MouseAppearance[
Mouseover["price",
Style[
"price", FontColor ->
RGBColor[
0.27450980392156865`, 0.5372549019607843,
0.792156862745098]]], "LinkHand"], {"MouseClicked", 1} :>
If[
TypeSystem`NestedGrid`PackagePrivate`checkInteractivity[
TypeSystem`NestedGrid`PackagePrivate`$state$$],
TypeSystem`NestedGrid`PackagePrivate`updateState[
TypeSystem`NestedGrid`PackagePrivate`$state$$,
TypeSystem`NestedGrid`PackagePrivate`$path$$,
TypeSystem`NestedGrid`PackagePrivate`$vPos$$,
TypeSystem`NestedGrid`PackagePrivate`$hPos$$,
TypeSystem`NestedGrid`PackagePrivate`$grid$$,
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]]][{
All, "price"}, 1]]],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{
All, "price"}, "ColumnHeader", True], "Mouse"],
ImageSize -> {{1, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}], Background ->
GrayLevel[0.95], Alignment -> {Left, Baseline}]}, {
Item[
Pane[
Annotation[
RawBoxes["1367"],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{1,
Key["user_id"]}, "Item", False], "Mouse"],
ImageSize -> {{34, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation["M",
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{1,
Key["sex"]}, "Item", False], "Mouse"],
ImageSize -> {{33.6, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation[
RawBoxes["16"],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{1,
Key["age"]}, "Item", False], "Mouse"],
ImageSize -> {{34, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation[
"\:0410\:043b\:0442\:0430\:0439\:0441\:043a\:0438\:0439 \
\:043a\:0440\:0430\:0439",
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{1,
Key["region"]}, "Item", False], "Mouse"],
ImageSize -> {{235.20000000000002`, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation["No bundle",
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{1,
Key["bundle"]}, "Item", False], "Mouse"],
ImageSize -> {{100.80000000000001`, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation[
RawBoxes["158"],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{1,
Key["num_sessions"]}, "Item", False], "Mouse"],
ImageSize -> {{34, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation[
RawBoxes["107"],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{1,
Key["avg_session"]}, "Item", False], "Mouse"],
ImageSize -> {{34, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation["\:0422\:043e\:043f\:043b\:0438\:0432\:043e",
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{1,
Key["service"]}, "Item", False], "Mouse"],
ImageSize -> {{123.20000000000002`, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation["2022-12-03",
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{1,
Key["order_date"]}, "Item", False], "Mouse"],
ImageSize -> {{112.00000000000001`, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation[
RawBoxes["282"],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{1,
Key["price"]}, "Item", False], "Mouse"],
ImageSize -> {{34, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}]}, {
Item[
Pane[
Annotation[
RawBoxes["30931"],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{2,
Key["user_id"]}, "Item", False], "Mouse"],
ImageSize -> {{34, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation["M",
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{2,
Key["sex"]}, "Item", False], "Mouse"],
ImageSize -> {{33.6, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation[
RawBoxes["17"],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{2,
Key["age"]}, "Item", False], "Mouse"],
ImageSize -> {{34, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation[
"\:041c\:043e\:0441\:043a\:043e\:0432\:0441\:043a\:0430\
\:044f \:043e\:0431\:043b\:0430\:0441\:0442\:044c",
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{2,
Key["region"]}, "Item", False], "Mouse"],
ImageSize -> {{235.20000000000002`, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation["Tinkoff Pro",
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{2,
Key["bundle"]}, "Item", False], "Mouse"],
ImageSize -> {{100.80000000000001`, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation[
RawBoxes["715"],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{2,
Key["num_sessions"]}, "Item", False], "Mouse"],
ImageSize -> {{34, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation[
RawBoxes["84"],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{2,
Key["avg_session"]}, "Item", False], "Mouse"],
ImageSize -> {{34, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation["\:041a\:0438\:043d\:043e",
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{2,
Key["service"]}, "Item", False], "Mouse"],
ImageSize -> {{123.20000000000002`, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation["2022-11-11",
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{2,
Key["order_date"]}, "Item", False], "Mouse"],
ImageSize -> {{112.00000000000001`, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation[
RawBoxes["174"],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{2,
Key["price"]}, "Item", False], "Mouse"],
ImageSize -> {{34, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}]}, {
Item[
Pane[
Annotation[
RawBoxes["38342"],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{3,
Key["user_id"]}, "Item", False], "Mouse"],
ImageSize -> {{34, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation["M",
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{3,
Key["sex"]}, "Item", False], "Mouse"],
ImageSize -> {{33.6, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation[
RawBoxes["16"],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{3,
Key["age"]}, "Item", False], "Mouse"],
ImageSize -> {{34, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation[
"\:0420\:0435\:0441\:043f\:0443\:0431\:043b\:0438\:043a\
\:0430 \:0411\:0430\:0448\:043a\:043e\:0440\:0442\:043e\:0441\:0442\:0430\
\:043d",
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{3,
Key["region"]}, "Item", False], "Mouse"],
ImageSize -> {{235.20000000000002`, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation["Tinkoff Pro",
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{3,
Key["bundle"]}, "Item", False], "Mouse"],
ImageSize -> {{100.80000000000001`, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation[
RawBoxes["846"],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{3,
Key["num_sessions"]}, "Item", False], "Mouse"],
ImageSize -> {{34, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation[
RawBoxes["54"],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{3,
Key["avg_session"]}, "Item", False], "Mouse"],
ImageSize -> {{34, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation["\:041a\:0438\:043d\:043e",
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{3,
Key["service"]}, "Item", False], "Mouse"],
ImageSize -> {{123.20000000000002`, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation["2022-01-07",
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{3,
Key["order_date"]}, "Item", False], "Mouse"],
ImageSize -> {{112.00000000000001`, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation[
RawBoxes["183"],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{3,
Key["price"]}, "Item", False], "Mouse"],
ImageSize -> {{34, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}]}, {
Item[
Pane[
Annotation[
RawBoxes["23681"],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{4,
Key["user_id"]}, "Item", False], "Mouse"],
ImageSize -> {{34, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation["M",
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{4,
Key["sex"]}, "Item", False], "Mouse"],
ImageSize -> {{33.6, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation[
RawBoxes["14"],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{4,
Key["age"]}, "Item", False], "Mouse"],
ImageSize -> {{34, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation[
"\:041c\:043e\:0441\:043a\:043e\:0432\:0441\:043a\:0430\
\:044f \:043e\:0431\:043b\:0430\:0441\:0442\:044c",
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{4,
Key["region"]}, "Item", False], "Mouse"],
ImageSize -> {{235.20000000000002`, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation["No bundle",
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{4,
Key["bundle"]}, "Item", False], "Mouse"],
ImageSize -> {{100.80000000000001`, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation[
RawBoxes["540"],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{4,
Key["num_sessions"]}, "Item", False], "Mouse"],
ImageSize -> {{34, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation[
RawBoxes["330"],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{4,
Key["avg_session"]}, "Item", False], "Mouse"],
ImageSize -> {{34, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation[
"\:0412\:043a\:0443\:0441\:0432\:0438\:043b\:043b",
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{4,
Key["service"]}, "Item", False], "Mouse"],
ImageSize -> {{123.20000000000002`, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation["2022-12-28",
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{4,
Key["order_date"]}, "Item", False], "Mouse"],
ImageSize -> {{112.00000000000001`, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation[
RawBoxes["263"],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{4,
Key["price"]}, "Item", False], "Mouse"],
ImageSize -> {{34, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}]}, {
Item[
Pane[
Annotation[
RawBoxes["39461"],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{5,
Key["user_id"]}, "Item", False], "Mouse"],
ImageSize -> {{34, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation["M",
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{5,
Key["sex"]}, "Item", False], "Mouse"],
ImageSize -> {{33.6, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation[
RawBoxes["17"],
TypeSystem`NestedGrid`PackagePrivate`$SliceMarker[
TypeSystem`NestedGrid`PackagePrivate`localHold[
TypeSystem`NestedGrid`PackagePrivate`$outputID$$]][{5,
Key["age"]}, "Item", False], "Mouse"],
ImageSize -> {{34, Full}, Automatic},
ImageMargins -> {{5, 3}, {4, 5}}],
ItemSize -> {Full, Automatic}],
Item[
Pane[
Annotation[
"\:0412\:043e\:0440\:043e\:043d\:0435\:0436\:0441\:043a\
\:0430\:044f \:043e\:0431\:043b\:0430\:0441\:0442\:044c",