-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathsubset.html
More file actions
93 lines (93 loc) · 4.31 KB
/
subset.html
File metadata and controls
93 lines (93 loc) · 4.31 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
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
<body>
<div class="vp-ds-body vp-scrollbar">
<table>
<thead></thead><colgroup><col width="127px"><col width="*"></colgroup>
<tbody>
<tr>
<td colspan="2">
<!-- Preview code board -->
<div class="vp-ds-preview">
<textarea id="vp_ssPreviewCode" name="code"># Code preview</textarea>
</div>
</td>
</tr>
<tr>
<!-- Variable : Pandas Object-->
<td><label class="vp-ds-label vp-orange-text">DataFrame</label></td>
<td>
<div class="vp-ds-pandas-object-box" style="display:inline-block;">
<!-- Var Selector -->
<input class="vp-input vp-ds-pandas-object"/>
</div>
<!-- use copy -->
<label><input type="checkbox" class="vp-ds-use-copy"><span>Make a copy</span></label>
</td>
</tr>
<tr>
<td><label class="vp-ds-label vp-orange-text">Method</label></td>
<td>
<!-- Subset type -->
<select class="vp-ds-subset-type vp-select">
<option value="subset">subset</option>
<option value="loc">loc (location)</option>
<option value="iloc">iloc (integer location)</option>
<option value="query">query</option>
</select>
<!-- to frame -->
<label style="display:none;"><input type="checkbox" class="vp-ds-to-frame"><span>To DataFrame</span></label>
</td>
</tr>
<tr>
<td><label class="vp-ds-label">Allocate to</label></td>
<td><input type="text" class="vp-input vp-ds-allocate-to" placeholder="New variable name"></td>
</tr>
</tbody>
</table>
<div class="vp-ds-tab-page subset">
<div class="vp-ds-tab-page-box subset-row">
<div>
<label class="vp-ds-rowcol-subset-title">Row Subset</label>
<select class="vp-ds-rowtype vp-select m">
<!-- render row subset type -->
</select>
</div>
<div class="vp-ds-rowtype-box indexing" style="display: none;">
<div class="vp-ds-select-container select-row">
<!-- render row indexing -->
</div>
</div>
<div class="vp-ds-rowtype-box slicing" style="display:none;">
<div class="vp-ds-slicing-box">
<!-- render row slicing -->
</div>
</div>
<div class="vp-ds-rowtype-box condition vp-scrollbar no-selection">
<table class="vp-ds-cond-tbl">
<!-- render column condition list -->
</table>
</div>
<div class="vp-ds-rowtype-box timestamp no-selection" style="display:none;">
<input type="text" class="vp-ds-indexing-timestamp vp-input" placeholder="Timestamp Index">
</div>
</div>
<div class="vp-ds-tab-page-box subset-column">
<div>
<label class="vp-ds-rowcol-subset-title">Column Subset</label>
<select class="vp-ds-coltype vp-select m">
<!-- render column subset type -->
</select>
</div>
<div class="vp-ds-coltype-box indexing">
<div class="vp-ds-select-container select-col">
<!-- render column indexing -->
</div>
</div>
<div class="vp-ds-coltype-box slicing" style="display:none;">
<div class="vp-ds-slicing-box">
<!-- render column slicing -->
</div>
</div>
</div>
</div>
</div>
</body>