a10 commited on
Commit
0ddfec1
·
1 Parent(s): f63acc1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -1,4 +1,5 @@
1
 
 
2
  import streamlit as st
3
  import pandas as pd
4
  import numpy as np
@@ -79,7 +80,7 @@ def asubmit(aparam):
79
  ax.plot(adf3['Date'], lin.predict(adf3[['Date']]), c='r')
80
 
81
  # lin.score(adf3[['Date']], adf3['Celsius'])
82
- st.write(reg.predict(np.array([[20230223]])))
83
 
84
  adf = pd.DataFrame(
85
  astations,
 
1
 
2
+
3
  import streamlit as st
4
  import pandas as pd
5
  import numpy as np
 
80
  ax.plot(adf3['Date'], lin.predict(adf3[['Date']]), c='r')
81
 
82
  # lin.score(adf3[['Date']], adf3['Celsius'])
83
+ st.write(lin.predict(np.array([[20230223]])))
84
 
85
  adf = pd.DataFrame(
86
  astations,