generated from cs-98/Hack-A-thing-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwidget_constructor.py
68 lines (56 loc) · 1.86 KB
/
widget_constructor.py
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
import ipywidgets as widgets
import pandas as pd
from constants import anova, ttest, corr, regression, wilcoxon
def construct_selector_widgets(df: pd.DataFrame):
"""
Constructs widgets for selecting tests.
-df - input DataFrame to evaluate
"""
df_number = df.select_dtypes(include='number')
df_cat = df.select_dtypes(include='category')
cat_wid = lambda : widgets.Dropdown(
options=df_cat.columns,
value=None,
description='Grouping:',
disabled=False,
);
cont_wid = lambda description: widgets.Dropdown(
options=df_number.columns,
value=None,
description=description,
disabled=False,
);
opt_wid = lambda : widgets.Dropdown(
options=["pearson", "spearman", 'kendall'],
value=None,
description='Method:',
disabled=False,
);
test_options_widgets = {anova: [cat_wid(), cont_wid("Dependent:")], \
ttest: [cat_wid(), cont_wid("Dependent:")], \
corr: [cont_wid("Var. 1:"), cont_wid("Var. 2:"), opt_wid()],\
regression: [cont_wid("Independent"), cont_wid("Dependent")],\
wilcoxon: [cat_wid(), cont_wid("Dependent")]}
return test_options_widgets
def construct_header_widgets():
header = widgets.HTML(
value="<h1>PandaStats</h1>",
placeholder='',
description='',
)
stats_header = widgets.HTML(
value="<h3>Statistical Tests</h3>",
placeholder='',
description='',
)
output_header = widgets.HTML(
value="<h3>Test Output</h3>",
placeholder='',
description='',
)
data_header = widgets.HTML(
value="<h3>Input Data</h3>",
placeholder='',
description='',
)
return header, data_header, stats_header, output_header