OatNapat commited on
Commit
d0ef57f
·
1 Parent(s): 0d62c54

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
app.py CHANGED
@@ -85,7 +85,14 @@ if uploaded_files:
85
  if convert_to_float:
86
  df[selected_values] = df[selected_values].astype(float)
87
 
88
-
 
 
 
 
 
 
 
89
 
90
 
91
 
 
85
  if convert_to_float:
86
  df[selected_values] = df[selected_values].astype(float)
87
 
88
+
89
+ st.markdown("analyse")
90
+ qqplot = st.selectbox("QQplot", df.columns)
91
+ if qqplot:
92
+ fig, ax = plt.subplots(figsize=(6, 6))
93
+ sm.qqplot(data, line='45', ax=ax)
94
+ plt.title("QQ Plot")
95
+ plt.show()
96
 
97
 
98