Phani1008 commited on
Commit
1664ae3
·
verified ·
1 Parent(s): 3a10bd3

Update pages/1_probability.py

Browse files
Files changed (1) hide show
  1. pages/1_probability.py +18 -0
pages/1_probability.py CHANGED
@@ -3,9 +3,27 @@ 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""",divider=True)
 
3
  import numpy as np
4
  import matplotlib.pyplot as plt
5
  import random
6
+ import requests
7
+ from streamlit_lottie import st_lottie
8
 
9
+ st.title("Probability")
10
+
11
+
12
+ def load_lottieurl(url: str):
13
+ r = requests.get(url)
14
+ if r.status_code != 200:
15
+ return None
16
+ return r.json()
17
+
18
+
19
+
20
+ lottie_data_analysis = load_lottieurl("https://lottie.host/3dca1930-6496-495f-86ad-36043c660e37/I9IWTvZpPo.json")
21
+
22
+
23
+ st_lottie(lottie_data_analysis, height=150, key="data_analysis")
24
  st.title("STATISTICS")
25
 
26
+
27
  st.subheader('What is Statistics?')
28
 
29
  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)