ifw-arz commited on
Commit
6b454c6
1 Parent(s): 972e694
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -12,6 +12,7 @@ def main():
12
  if uploaded_file is not None:
13
  try:
14
  df = pd.read_csv(uploaded_file)
 
15
  except pd.errors.EmptyDataError:
16
  st.error("Fehler: Leere CSV Datei")
17
  except Exception as e:
@@ -19,8 +20,6 @@ def main():
19
 
20
  while uploaded_file is not None:
21
 
22
- mittelwert = st.slider("Gleitender Mittelwert", 0, 1000, 0, 10)
23
-
24
  time_column = st.selectbox("Zeit auswählen", df.columns, index=0)
25
  data_column = st.selectbox("Daten auswählen", df.columns)
26
 
 
12
  if uploaded_file is not None:
13
  try:
14
  df = pd.read_csv(uploaded_file)
15
+ mittelwert = st.slider("Gleitender Mittelwert", 0, 1000, 0, 10)
16
  except pd.errors.EmptyDataError:
17
  st.error("Fehler: Leere CSV Datei")
18
  except Exception as e:
 
20
 
21
  while uploaded_file is not None:
22
 
 
 
23
  time_column = st.selectbox("Zeit auswählen", df.columns, index=0)
24
  data_column = st.selectbox("Daten auswählen", df.columns)
25