a10 commited on
Commit
3e08451
·
1 Parent(s): f0262c3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -1,4 +1,3 @@
1
-
2
  # 19feb2023
3
  #https://huggingface.co/spaces/keras-io/timeseries_forecasting_for_weather/
4
 
@@ -30,7 +29,7 @@ for i in range(ayear-backlogmax,ayear,1):
30
 
31
  st.write(row[0],row[1],row[2],row[3],row[4],amonth,amonthday)
32
  adate = ("{}.{}.{} 00:00:00").format(row[2], row[1], row[0])
33
- adf.append({"Date Time":adate,"T (degC)":row[4],})
34
  break
35
 
36
  st.dataframe(adf)
 
 
1
  # 19feb2023
2
  #https://huggingface.co/spaces/keras-io/timeseries_forecasting_for_weather/
3
 
 
29
 
30
  st.write(row[0],row[1],row[2],row[3],row[4],amonth,amonthday)
31
  adate = ("{}.{}.{} 00:00:00").format(row[2], row[1], row[0])
32
+ adf.append({"Date Time":adate,"T (degC)":row[4],}, ignore_index=True)
33
  break
34
 
35
  st.dataframe(adf)