forked from visualpython/visualpython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstudentstTest.html
More file actions
92 lines (92 loc) · 5.37 KB
/
studentstTest.html
File metadata and controls
92 lines (92 loc) · 5.37 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
<!--
Project Name : Visual Python
Description : GUI-based Python code generator
File Name : studentstTest.html
Author : Black Logic
Note : student's t-test
License : GNU GPLv3 with Visual Python special exception
Date : 2023. 05. 16
Change Date :
-->
<body>
<div class="vp-grid-box">
<select id="testType" class="vp-big-select vp-state">
<option value="one-sample">One-sample t-test</option>
<option value="two-sample">Independent two-sample t-test</option>
<option value="paired-sample">Paired samples t-test</option>
</select>
<div class="vp-grid-border-box">
<div class="vp-grid-box vp-st-option-box">
<div class="vp-st-option two-sample vp-grid-col-160">
<label class="vp-orange-text">Input type</label>
<div>
<label><input type="radio" name="inputType" class="vp-state" value="long-data" checked><span>Long data</span></label>
<label><input type="radio" name="inputType" class="vp-state" value="wide-data"><span>Wide data</span></label>
</div>
</div>
<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-st-option one-sample two-sample-long-data vp-grid-col-160">
<label for="testVariable" class="vp-orange-text">Test variable</label>
<select id="testVariable" class="vp-select vp-state" required></select>
</div>
<div class="vp-st-option two-sample-long-data vp-grid-col-160">
<label for="groupingVariable" class="vp-orange-text">Grouping variable</label>
<select id="groupingVariable" class="vp-select vp-state" required></select>
<label></label>
<div class="vp-grid-col-95">
<label for="group1">Group 1</label>
<div>
<input id="group1" type="text" class="vp-input vp-state" placeholder="Select value"/>
<label><input id="group1_istext" type="checkbox" class="vp-state" checked/><span>Text</span></label>
</div>
<label for="group2">Group 2</label>
<div>
<input id="group2" type="text" class="vp-input vp-state" placeholder="Select value"/>
<label><input id="group2_istext" type="checkbox" class="vp-state" checked/><span>Text</span></label>
</div>
</div>
</div>
<div class="vp-st-option two-sample-wide-data vp-grid-col-160">
<label for="testVariable1" class="vp-orange-text">Test variable 1</label>
<select id="testVariable1" class="vp-select vp-state" required></select>
<label for="testVariable2" class="vp-orange-text">Test variable 2</label>
<select id="testVariable2" class="vp-select vp-state" required></select>
</div>
<div class="vp-st-option paired-sample vp-grid-col-160">
<label for="pairedVariable1" class="vp-orange-text">Paired variable 1</label>
<select id="pairedVariable1" class="vp-select vp-state" required></select>
<label for="pairedVariable2" class="vp-orange-text">Paired variable 2</label>
<select id="pairedVariable2" class="vp-select vp-state" required></select>
</div>
<div class="vp-st-option one-sample vp-grid-col-160">
<label for="testValue" class="vp-orange-text">Test value</label>
<input type="number" id="testValue" class="vp-state vp-input" required/>
<label></label>
<div>
<label class="vp-orange-text vp-italic">NOTE: </label><label class="vp-gray-text vp-italic">Expected value in null hypothesis.</label>
</div>
</div>
<hr style="margin: 5px 0;"/>
<div class="vp-st-option one-sample two-sample paired-sample vp-grid-col-160">
<label for="alterHypo" class="vp-orange-text">Alternative hypothesis</label>
<select id="alterHypo" class="vp-select vp-state" required>
<option value="two-sided" selected>two-sided</option>
<option value="less">less</option>
<option value="greater">greater</option>
</select>
</div>
<div class="vp-st-option one-sample paired-sample vp-grid-col-160">
<label for="confInt" class="vp-orange-text">Confidence interval</label>
<div>
<input type="number" id="confInt" class="vp-state vp-input" value="95" required/> %
</div>
</div>
</div>
</div>
</div>
</body>