Spaces:
Sleeping
Sleeping
Update pages/3_STATISTICAL TYPES OF DATA.py
Browse files
pages/3_STATISTICAL TYPES OF DATA.py
CHANGED
|
@@ -6,6 +6,7 @@ st.write("The data can be of 2 types. namely,")
|
|
| 6 |
st.write("""- Qualitative Data
|
| 7 |
|
| 8 |
- Quantitative Data""")
|
|
|
|
| 9 |
graph=graphviz.Digraph()
|
| 10 |
graph.edge("Types of Data","Qualitative data")
|
| 11 |
graph.edge("Types of Data","Quantitative data")
|
|
@@ -14,6 +15,8 @@ graph.edge("Qualitative data","Ordinal data")
|
|
| 14 |
graph.edge("Quantitative data","Discrete")
|
| 15 |
graph.edge("Quantitative data","Continuous")
|
| 16 |
|
|
|
|
|
|
|
| 17 |
st.header("Qualitative Data")
|
| 18 |
st.write("This is also known as Categorical data.")
|
| 19 |
st.write("This mainly has categories and doesnot have any weightage.")
|
|
@@ -25,7 +28,7 @@ st.write("""1. Nominal
|
|
| 25 |
2. Ordinal""")
|
| 26 |
st.subheader("Nominal")
|
| 27 |
st.write("nominal data doesnot have any order and it contains of 2 or more categories.")
|
| 28 |
-
st.write("""If we
|
| 29 |
|
| 30 |
***Example***
|
| 31 |
|
|
@@ -48,7 +51,7 @@ st.write("""***Example of Ordinal data***
|
|
| 48 |
Grades based on marks: Grade A is considered as excellent performance, Grade B as Very Good, Grade C as Good , Grade F as Fail/Poor.""")
|
| 49 |
|
| 50 |
st.header("Quantitative Data")
|
| 51 |
-
st.write("This have
|
| 52 |
st.write("Here, the data can be measured as the data.")
|
| 53 |
st.write("We can perform many mathematical operations on such data.")
|
| 54 |
st.write("**Quantitative data can further be divided into 2 types**")
|
|
|
|
| 6 |
st.write("""- Qualitative Data
|
| 7 |
|
| 8 |
- Quantitative Data""")
|
| 9 |
+
|
| 10 |
graph=graphviz.Digraph()
|
| 11 |
graph.edge("Types of Data","Qualitative data")
|
| 12 |
graph.edge("Types of Data","Quantitative data")
|
|
|
|
| 15 |
graph.edge("Quantitative data","Discrete")
|
| 16 |
graph.edge("Quantitative data","Continuous")
|
| 17 |
|
| 18 |
+
st.graphviz_chart(graph)
|
| 19 |
+
|
| 20 |
st.header("Qualitative Data")
|
| 21 |
st.write("This is also known as Categorical data.")
|
| 22 |
st.write("This mainly has categories and doesnot have any weightage.")
|
|
|
|
| 28 |
2. Ordinal""")
|
| 29 |
st.subheader("Nominal")
|
| 30 |
st.write("nominal data doesnot have any order and it contains of 2 or more categories.")
|
| 31 |
+
st.write("""If we have only 2 categories which are not having any order then it is **nominal binary data**
|
| 32 |
|
| 33 |
***Example***
|
| 34 |
|
|
|
|
| 51 |
Grades based on marks: Grade A is considered as excellent performance, Grade B as Very Good, Grade C as Good , Grade F as Fail/Poor.""")
|
| 52 |
|
| 53 |
st.header("Quantitative Data")
|
| 54 |
+
st.write("This have weightage and numerical value.")
|
| 55 |
st.write("Here, the data can be measured as the data.")
|
| 56 |
st.write("We can perform many mathematical operations on such data.")
|
| 57 |
st.write("**Quantitative data can further be divided into 2 types**")
|