DOMMETI commited on
Commit
2a17b40
·
verified ·
1 Parent(s): ed92f5d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -0
app.py CHANGED
@@ -275,4 +275,15 @@ st.latex(r'''
275
  st.subheader("Relative Variance")
276
  st.latex(r'''
277
  \text{Relative Var} = \frac{\text{Var}}{\bar{x}} \times 100
 
 
 
 
 
 
 
 
 
 
 
278
  ''')
 
275
  st.subheader("Relative Variance")
276
  st.latex(r'''
277
  \text{Relative Var} = \frac{\text{Var}}{\bar{x}} \times 100
278
+ ''')
279
+ st.markdown(''':orange[**Standard Deviation**] is one of the measure to find the disperssion.It is one of the best measure to find the disperssion.It over comes the
280
+ disadvantage occured in varience by square rooting it.
281
+ ''')
282
+ st.subheader("Absolute Standard Deviation")
283
+ st.latex(r'''
284
+ \sigma = \sqrt{\frac{1}{N} \sum_{i=1}^{N} (x_i - \bar{x})^2}
285
+ ''')
286
+ st.subheader("Relative Standard Deviation")
287
+ st.latex(r'''
288
+ \text{Relative SD} = \frac{\sigma}{\bar{x}}
289
  ''')