-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathgroupby.html
More file actions
54 lines (54 loc) · 2.43 KB
/
groupby.html
File metadata and controls
54 lines (54 loc) · 2.43 KB
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
<body>
<div class="vp-gb-df-box">
<div>
<label for="vp_gbVariable" class="vp-orange-text w80">DataFrame</label>
<select id="vp_gbVariable">
<!-- DataFrame -->
</select>
<!-- LAB: img to url -->
<div class="vp-gb-df-refresh">
<!-- <img src="${vp_base}/img/refresh.svg"> -->
</div>
</div>
<div>
<label for="vp_gbBy" class="vp-orange-text w80">Groupby</label>
<input type="text" id="vp_gbBy" placeholder="Groupby columns" readonly="" required="true">
<label><input type="checkbox" id="vp_gbByGrouper" disabled=""><span>Grouper</span></label>
<div class="vp-gb-by-grouper-box" style="display:none;">
<input type="number" id="vp_gbByGrouperNumber" class="vp-gb-by-number">
<select id="vp_gbByGrouperPeriod">
<!-- period list -->
</select>
</div>
</div>
<hr style="margin: 5px 0;">
<div>
<label for="vp_gbDisplay" class="w80">Columns</label>
<input type="text" id="vp_gbDisplay" placeholder="All columns" readonly="">
</div>
<div>
<label for="vp_gbMethodSelect" class="w80">Method</label>
<select id="vp_gbMethodSelect">
<!-- method list -->
</select>
<input type="text" id="vp_gbMethod" class="vp-gb-method" disabled="" style="display: none;" value="">
<label><input type="checkbox" id="vp_gbAdvanced"><span>Advanced</span></label>
</div>
<div class="vp-gb-adv-box vp-scrollbar" style="display: none;">
<div class="vp-gb-adv-head">
<label>Columns</label>
<label>Methods</label>
<label>Rename columns</label>
</div>
<!-- render adv item -->
<button id="vp_gbAdvAdd" class="vp-button">+ Add</button>
</div>
<hr style="margin: 5px 0;">
<div>
<label for="vp_gbAllocateTo" class="w80">Allocate to</label>
<input type="text" id="vp_gbAllocateTo" placeholder="New variable name">
<label><input type="checkbox" id="vp_gbResetIndex"><span>Reset Index</span></label>
<label style="display:none;"><input type="checkbox" id="vp_gbToFrame"><span>To DataFrame</span></label>
</div>
</div>
</body>