-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.py
30 lines (26 loc) · 830 Bytes
/
main.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
import streamlit as st
EOL = "Estimates of Location"
EOV = "Estimates of Variability"
DIST = "Exploring the Data Distribution"
THEO = "Central Limit"
PERM = "Permutation"
# TEST = "Statistical Test (Intro)"
TS = "Timeseries"
CLUSTER = "Cluster"
if __name__ == '__main__':
section = st.sidebar.radio("Section", [EOL, EOV, DIST, THEO, PERM, TS,CLUSTER])
if section == EOL:
from estimates_of_location import render
elif section == EOV:
from estimates_of_variability import render
elif section == DIST:
from data_distribution import render
elif section == THEO:
from theorem import render
elif section == PERM:
from perm import render
elif section == TS:
from ts import render
elif section == CLUSTER:
from cluster import render
render()