Phani1008 commited on
Commit
e88c533
·
verified ·
1 Parent(s): dbd6679

Update pages/1_probability.py

Browse files
Files changed (1) hide show
  1. pages/1_probability.py +30 -0
pages/1_probability.py CHANGED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import pandas as pd
3
+ import numpy as np
4
+ import matplotlib.pyplot as plt
5
+ import random
6
+
7
+ st.title("STATISTICS")
8
+
9
+ st.subheader('What is Statistics?')
10
+
11
+ st.markdown("""It is a huge field in this we are going to deal data.The below mentioned are some of the operations which we will be doing on data""",unsafe_allow_html=True)
12
+
13
+ st.markdown("""
14
+ <ul class="icon-bullet">
15
+ <li>Collecting</li>
16
+ <li>Interpreting</li>
17
+ <li>Analysis</li>
18
+ <li>Structuring</li>
19
+ </ul>""",unsafe_allow_html=True)
20
+
21
+
22
+ st.subheader("Why is Statistics Important?")
23
+ st.markdown(""""Statistics is essential for making informed decisions. By transforming raw data into meaningful information, it helps in:
24
+ <ul class="icon-bullet">
25
+ <li>Understanding trends and patterns.</li>
26
+ <li>Making predictions and forecasts.</li>
27
+ <li>Identifying relationships between variables.</li>
28
+ <li>Testing hypotheses and validating results.</li>
29
+ <li>Communicating findings effectively through data visualization.</li>
30
+ </ul>""",unsafe_allow_html=True)