Harika22 commited on
Commit
1689895
·
verified ·
1 Parent(s): d964032

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +18 -5
app.py CHANGED
@@ -25,8 +25,21 @@ st.write("Population data is exact information of data while sample data may hav
25
  st.write("Ex: We want to collect information about people in the world who are in data science/data analysis domain and who have completed")
26
  st.write("*Measure of sample data is basically known as *Statistics**")
27
  st.write("*Measure of population data is known as *Parameters**")
28
- st.subheader("Based on the descriptive statistics which are predefined based on measures .They are **1.Measures of central tendency** /n **2.Measures of dispersion(variability)** /n **3.Measures of distribution**")
29
-
30
-
31
-
32
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
25
  st.write("Ex: We want to collect information about people in the world who are in data science/data analysis domain and who have completed")
26
  st.write("*Measure of sample data is basically known as *Statistics**")
27
  st.write("*Measure of population data is known as *Parameters**")
28
+ st.subheader("Types of descriptive statistics")
29
+ st.write("Based on the descriptive statistics which are predefined based on measures .They are **1.Measures of central tendency** /n **2.Measures of dispersion(variability)** /n **3.Measures of distribution**")
30
+ st.subheader("***Measures of central tendency***")
31
+ st.write("It is used to measure the central value or average value of the collected data")
32
+ st.write("There are 3 measures in central tendency")
33
+ st.subheader("*1.Mean* /n *2.Median* /n *3.Mode*")
34
+ st.write("Mode is defined as the data or value which is frequently repeated mostly used for categorical data")
35
+ st.write("Median is it gives precise central value of the data used only in ordered data which considers only central values")
36
+ st.write("Mean uses all the observations in the data mostly for measuring the central tendency mean is used for exact central value")
37
+ st.write("***Mean >> Median >> Mode***")
38
+ st.subheader("***Measures of dispersion(variability)***")
39
+ st.write("It is used to measure how your collected data is spreaded or dispersed around the cantral value")
40
+ st.write("There are 2 measures in dispersion")
41
+ st.subheader("*1.Absolute dispersion* /n *2.Relative dispersion*")
42
+ st.write("There are four types in absolute dispersion")
43
+ st.write("*1.Range* /n *2.Quartile deviation* /n *3.Variance* /n *4.Standard deviation*")
44
+ st.write("There are four types in relative dispersion")
45
+ st.write("*1.Coefficient of range* /n *2.Coefficient of Quartile deviation* /n *3.Coefficient of Variance* /n *4.Coefficient of Standard deviation*")