forked from visualpython/visualpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlogisticRegression.html
More file actions
38 lines (38 loc) · 1.78 KB
/
Copy pathlogisticRegression.html
File metadata and controls
38 lines (38 loc) · 1.78 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
<!--
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-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>
</div>
<div class="vp-grid-col-160">
<label for="dependent" class="vp-orange-text">Dependent variable</label>
<div>
<select id="dependent" class="vp-select vp-state" required></select>
<label><input type="checkbox" id="encoding" class="vp-state" checked><span>Encoding labels</span></label>
</div>
<label></label>
<div>
<label class="vp-italic vp-orange-text">NOTE: </label>
<label class="vp-italic vp-gray-text">Dependent variables must have two categories.</label>
</div>
<label class="vp-orange-text">Independent variable</label>
<div id="independent" class="h150"></div>
</div>
<div><label><input type="checkbox" id="showOdds" class="vp-state" checked><span>Show Odds</span></label></div>
<div><label><input type="checkbox" id="multiCollinearity" class="vp-state" checked><span>Multi-collinearity statistics</span></label></div>
</div>
</div>
</body>