-
-
Notifications
You must be signed in to change notification settings - Fork 118
Expand file tree
/
Copy pathcorrAnalysis.html
More file actions
39 lines (39 loc) · 1.88 KB
/
corrAnalysis.html
File metadata and controls
39 lines (39 loc) · 1.88 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
<!--
Project Name : Visual Python
Description : GUI-based Python code generator
File Name : corrAnalysis.html
Author : Black Logic
Note : Correlation Analylsis
License : GNU GPLv3 with Visual Python special exception
Date : 2023. 05. 24
Change Date :
-->
<body>
<div class="vp-grid-box">
<div class="vp-grid-border-box">
<div class="vp-grid-box vp-grid-col-160">
<label for="data" class="vp-orange-text">Data</label>
<div class="vp-flex-gap5">
<input type="text" id="data" class="vp-state vp-input" required/>
</div>
<label>Variable</label>
<div id="variable" class="h150"></div>
<label for="corrType" class="vp-orange-text">Correlation</label>
<select id="corrType" class="vp-select vp-state">
<option value="pearson" selected>Pearson</option>
<option value="spearman">Spearman</option>
<option value="kendall">Kendall's Tau</option>
</select>
</div>
</div>
<div class="vp-grid-border-box">
<label for="corrAnlaysis">Display</label>
<div class="vp-grid-box">
<div><label><input type="checkbox" id="corrAnlaysis" class="vp-state" checked><span>Correlation Analysis</span></label></div>
<div><label><input type="checkbox" id="corrMatrix" class="vp-state" checked><span>Correlation matrix</span></label></div>
<div><label><input type="checkbox" id="corrHeatmap" class="vp-state"><span>Correlation heatmap</span></label></div>
<div><label><input type="checkbox" id="scatterMatrix" class="vp-state"><span>Scatterplot matrix</span></label></div>
</div>
</div>
</div>
</body>