File size: 2,539 Bytes
76f50a9
73096f8
 
ee54d51
aef6d80
89d2251
56531fe
89d2251
56531fe
 
89d2251
 
 
 
d2cc7e7
89d2251
d2cc7e7
89d2251
 
 
d2cc7e7
89d2251
995375c
89d2251
995375c
89d2251
ee54d51
89d2251
d2cc7e7
89d2251
 
 
524539e
89d2251
524539e
89d2251
524539e
89d2251
524539e
89d2251
d2cc7e7
89d2251
3df7590
89d2251
3df7590
89d2251
3df7590
89d2251
3df7590
89d2251
3df7590
d2cc7e7
524539e
 
 
 
 
 
2a62e4a
524539e
 
 
 
 
16593e6
524539e
 
 
c7a8628
524539e
 
 
 
 
 
 
9c609a5
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import streamlit as st
import pandas as pd
import numpy as np

st.header("INTRODCTION TO STATISTICS")

st.subheader("understanding statistics")

st.write("it is a huge field where we are going to deal with data. Mostly we are dealing with *data* in 4-ways. statistics is a mathematical operation uses and the study of collecting data, analysing, interpeting,presenting,and organizing data")

st.header("Types of statistics")

st.write("there are mainly 2 type of statistics")

st.markdown(":red[1.discriptive statistics]")

st.markdown(":blue[2.inferencial statistics]")

st.subheader("1.Descriptive statistics:")

st.write("So basically in this type we describe the data and helps to describe and summarize in terms of population or sample. population referes to compleate data whereas the sample leads to a sub part of the population.")

st.markdown("-  population: The population referes to compleate data . The outcome is called as parameter.")

st.markdown("- sample : small amount of population is called sample. The outcome is called statistics")

st.subheader("2. Inferencial Statistics:")

st.write("this refers to understanding of the data and draw conclusions based on analysing on a sample data of the population.")     
            
st.subheader("descriptive statistics are mainly divided into three types:")

st.markdown("1.Measures of central tendency")
            
st.markdown("2.Measures of variability(despersion)")
            
st.markdown("3.distribution")
            
st.subheader("1.Measures of central tendency")
            
st.write("This measure is used to calculate the central or average value of the data.The measures which are used to calculate central tendency are,")

st.markdown("**1.Arithmetic Mean**")

st.markdown("**2.Geometric Mean**")

st.markdown("**3.HarmonicMean**")

st.markdown("**4.Median**")

st.markdown("**5.Mode**")  

st.subheader("Measures of variability")

st.write("This measure is used to measure how the collected data is spreding or dispersing around the central value.The measures which are used to measure the dispersion are,")

st.write("Measures of variability are classified into two types:")

st.subheader("**1.Absolute**")

st.write("a.Range")

st.write("b.Quartile deviation")

st.write("c.Variance")

st.write("d.Standard deviation")
         
st.subheader("**2.Relative**")

st.write("a.Co-efficient of Range")

st.write("b.Co-efficient of Quartile deviation")

st.write("c.Co-efficient of Variance")

st.write("d.Co-efficient of Standard deviation")

st.write("THE END")