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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +22 -0
app.py CHANGED
@@ -254,3 +254,25 @@ st.subheader("Relative Range")
254
  st.latex(r'''
255
  \text{Relative Range} = \frac{\text{Absolute Range}}{\text{Mean}} \times 100
256
  ''')
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
254
  st.latex(r'''
255
  \text{Relative Range} = \frac{\text{Absolute Range}}{\text{Mean}} \times 100
256
  ''')
257
+ st.markdown(''':orange[**Quartile Deviation**] is one of the measure to find the disperssion.In this type the data is divided into 4 equal parts.
258
+ It will mostly focus on the central data.
259
+ ''')
260
+ st.subheader("Absolute Quartile Deviation")
261
+ st.latex(r'''
262
+ QD = \frac{Q3 - Q1}{2}
263
+ ''')
264
+ st.subheader("Relative Quartile Deviation")
265
+ st.latex(r'''
266
+ \text{Relative QD} = \frac{Q3 - Q1}{Q3 + Q1} \times 100
267
+ ''')
268
+ st.markdown(''':orange[**Varience**] is one of the measure to find the disperssion.It is one of the best measure to find the disperssion.The only
269
+ drawback is when in Varience is in order to overcome negitive value we square them thus the distance is doubled
270
+ ''')
271
+ st.subheader("Absolute Variance")
272
+ st.latex(r'''
273
+ \text{Var} = \frac{1}{N} \sum_{i=1}^{N} (x_i - \bar{x})^2
274
+ ''')
275
+ st.subheader("Relative Variance")
276
+ st.latex(r'''
277
+ \text{Relative Var} = \frac{\text{Var}}{\bar{x}} \times 100
278
+ ''')