-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathpandasOption.html
More file actions
72 lines (72 loc) · 3.6 KB
/
pandasOption.html
File metadata and controls
72 lines (72 loc) · 3.6 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
<body>
<div class="vp-grid-border-box vp-pandas-option-body vp-po-option">
<div>
<label class="vp-bold">Display</label>
<label style="float: right;">
<input type="checkbox" id="resetDisplay">
<span title="Set pandas options to default.">Set default</span>
</label>
</div>
<div class="vp-grid-col-110">
<label for="min_rows" class="">Min rows</label>
<input type="number" id="min_rows" class="vp-po-option-item vp-input vp-state" placeholder="10">
</div>
<div>
<label class="vp-orange-text vp-italic">NOTE:</label> <label class="vp-gray-text vp-italic">numbers of rows to show in a truncated view</label>
</div>
<div class="vp-grid-col-110">
<label for="min_rows" class="">Max rows</label>
<div>
<input type="number" id="max_rows" class="vp-po-option-item vp-input vp-state" placeholder="60">
<label>
<input type="checkbox" id="showAllRows" class="vp-po-option-item">
<span title="Set option as None to show all rows">Show all rows</span>
</label>
</div>
<label for="min_columns" class="">Max columns</label>
<div>
<input type="number" id="max_columns" class="vp-po-option-item vp-input vp-state" placeholder="0">
<label>
<input type="checkbox" id="showAllColumns" class="vp-po-option-item">
<span title="Set option as None to show all columns">Show all columns</span>
</label>
</div>
<label for="max_colwidth" class="">Max colwidth</label>
<input type="number" id="max_colwidth" class="vp-po-option-item vp-input vp-state" placeholder="50">
<label for="expand_frame_repr" class="">Expand frame</label>
<select id="expand_frame_repr" class="vp-po-option-item vp-select vp-state">
<option value="">Select option...</option>
<option value="True">True (default)</option>
<option value="False">False</option>
</select>
</div>
<hr style="margin: 5px 0;">
<div class="vp-grid-col-110">
<label for="precision" class="">Precision</label>
<input type="number" class="vp-po-option-item vp-input vp-state" id="precision" placeholder="6">
<label for="chop_threshold" class="">Chop threshold</label>
<input type="number" class="vp-po-option-item vp-input vp-state" id="chop_threshold" placeholder="None">
</div>
</div>
<div class="vp-grid-border-box vp-po-warning mt5">
<div>
<label class="vp-bold">Warnings</label>
<label style="float: right;">
<input type="checkbox" id="resetWarning">
<span title="Reset warning option.">Set default</span>
</label>
</div>
<div class="vp-grid-col-110">
<label for="filter_warning" class="">Filter warnings</label>
<select id="filter_warning" class="vp-po-warning-item vp-select vp-state">
<option value="">Select option...</option>
<option value="default">Default (default)</option>
<option value="error">Error</option>
<option value="ignore">Ignore</option>
<option value="always">Always</option>
<option value="module">Module</option>
<option value="once">Once</option>
</select>
</div>
</div>
</body>