Spaces:
Sleeping
Sleeping
Update pages/Random_Variable.py
Browse files- pages/Random_Variable.py +3 -1
pages/Random_Variable.py
CHANGED
|
@@ -74,6 +74,7 @@ st.markdown("""
|
|
| 74 |
""", unsafe_allow_html=True)
|
| 75 |
st.title("Random Variable")
|
| 76 |
st.markdown("""Random Variable is a function to which the input is sample space and the output should be mapped with real values by useing logic""",unsafe_allow_html=True)
|
|
|
|
| 77 |
st.title("Kethura Mood's")
|
| 78 |
Trail_7 = st.number_input("Trial:", min_value=1, max_value=100, value=50,key="Trail_7")
|
| 79 |
if st.button("Kethura's mood"):
|
|
@@ -89,5 +90,6 @@ if st.button("Kethura's mood"):
|
|
| 89 |
count=count+1
|
| 90 |
mood_mapping[i] = count
|
| 91 |
st.write(f"sample_space {unique_moods}")
|
| 92 |
-
st.write(mood_mapping)
|
|
|
|
| 93 |
|
|
|
|
| 74 |
""", unsafe_allow_html=True)
|
| 75 |
st.title("Random Variable")
|
| 76 |
st.markdown("""Random Variable is a function to which the input is sample space and the output should be mapped with real values by useing logic""",unsafe_allow_html=True)
|
| 77 |
+
st.write("Random Varible is denoted by capital X")
|
| 78 |
st.title("Kethura Mood's")
|
| 79 |
Trail_7 = st.number_input("Trial:", min_value=1, max_value=100, value=50,key="Trail_7")
|
| 80 |
if st.button("Kethura's mood"):
|
|
|
|
| 90 |
count=count+1
|
| 91 |
mood_mapping[i] = count
|
| 92 |
st.write(f"sample_space {unique_moods}")
|
| 93 |
+
st.write(f"X :{mood_mapping}")
|
| 94 |
+
st.write(f"p(x==1) is 1/6")
|
| 95 |
|