Phani1008 commited on
Commit
c7b2c2e
·
verified ·
1 Parent(s): 5468c62

Update pages/1_probability.py

Browse files
Files changed (1) hide show
  1. pages/1_probability.py +2 -29
pages/1_probability.py CHANGED
@@ -1,13 +1,9 @@
1
  import streamlit as st
2
  import pandas as pd
3
  import numpy as np
4
- import random
5
  import requests
6
  from streamlit_lottie import st_lottie
7
-
8
  st.title("Probability")
9
-
10
-
11
  def load_lottieurl(url: str):
12
  r = requests.get(url)
13
  if r.status_code != 200:
@@ -16,32 +12,9 @@ def load_lottieurl(url: str):
16
 
17
 
18
 
19
- lottie_data_analysis = load_lottieurl("https://lottie.host/3dca1930-6496-495f-86ad-36043c660e37/I9IWTvZpPo.json")
20
-
21
-
22
- st_lottie(lottie_data_analysis, height=150, key="data_analysis")
23
- st.title("STATISTICS")
24
-
25
-
26
- st.subheader('What is Statistics?')
27
 
28
- 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""",divider=True)
29
 
30
- st.markdown("""
31
- <ul class="icon-bullet">
32
- <li>Collecting</li>
33
- <li>Interpreting</li>
34
- <li>Analysis</li>
35
- <li>Structuring</li>
36
- </ul>""",unsafe_allow_html=True)
37
 
38
 
39
- st.subheader("Why is Statistics Important?")
40
- st.markdown(""""Statistics is essential for making informed decisions. By transforming raw data into meaningful information, it helps in:
41
- <ul class="icon-bullet">
42
- <li>Understanding trends and patterns.</li>
43
- <li>Making predictions and forecasts.</li>
44
- <li>Identifying relationships between variables.</li>
45
- <li>Testing hypotheses and validating results.</li>
46
- <li>Communicating findings effectively through data visualization.</li>
47
- </ul>""",unsafe_allow_html=True)
 
1
  import streamlit as st
2
  import pandas as pd
3
  import numpy as np
 
4
  import requests
5
  from streamlit_lottie import st_lottie
 
6
  st.title("Probability")
 
 
7
  def load_lottieurl(url: str):
8
  r = requests.get(url)
9
  if r.status_code != 200:
 
12
 
13
 
14
 
15
+ lottie_probability = load_lottieurl("https://lottie.host/3dca1930-6496-495f-86ad-36043c660e37/I9IWTvZpPo.json")
 
 
 
 
 
 
 
16
 
 
17
 
18
+ st_lottie(lottie_probability, height=150, key="Probability")
 
 
 
 
 
 
19
 
20