Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,13 +180,17 @@ def compare_data(data: Dict[str, pd.DataFrame], data2: pd.DataFrame) -> float:


if __name__ == "__main__":
tab1, tab2 = st.tabs(["Analysis", "References"])
tab1, tab2, tab3, tab4 = st.tabs(["Trajectory data transformation", "Steady state", "Analysis", "References"])
# ================================== Interface
with tab1:
c1 = st.columns(1)
with tab2:
c2 = st.columns(1)
with tab4:
docs.methods()
st.divider()
docs.references()
with tab1:
with tab3:
c1, c2, c3 = st.columns(3)
frequency = c1.number_input(
"Enter the frequency of the points to be plotted",
Expand Down