Kerene commited on
Commit
0a1edfe
·
verified ·
1 Parent(s): b80abaf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -288,7 +288,7 @@ def main():
288
  model = pickle.load(open('assurance.pkl', 'rb'))
289
  prediction = model.predict(data)
290
  st.subheader('Prediction of the CSV')
291
- pp = pd.DataFrame({"Prediction":prediction})
292
  ndf = pd.concat([data,pp],axis=1)
293
  st.write(ndf)
294
 
 
288
  model = pickle.load(open('assurance.pkl', 'rb'))
289
  prediction = model.predict(data)
290
  st.subheader('Prediction of the CSV')
291
+ pp = pd.DataFrame({"Predicted charges":prediction})
292
  ndf = pd.concat([data,pp],axis=1)
293
  st.write(ndf)
294