Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -83,7 +83,7 @@ st.markdown("""
|
|
| 83 |
</ul>""",unsafe_allow_html=True)
|
| 84 |
st.title('Terminology')
|
| 85 |
st.subheader('Experiment')
|
| 86 |
-
st.markdown("""It's a simple test or a procedure or an investigation which are carried out to discover what will be the consiquences
|
| 87 |
""",unsafe_allow_html=True)
|
| 88 |
st.title("Drug Trial Analysis Between Covaxine and Covishiled")
|
| 89 |
total_participants = st.number_input("Total Participants For Covaxine:", min_value=100, max_value=10000, value=1000)
|
|
@@ -98,3 +98,10 @@ st.write(f"Probability of Side Effects in Covishield: {p_side_effects_drug_2}%")
|
|
| 98 |
fig,axis=plt.subplots()
|
| 99 |
axis.pie(x=[p_side_effects_drug_1,p_side_effects_drug_2],labels=['covaxine','covishield'],autopct="%0.1f%%")
|
| 100 |
st.pyplot(fig)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 83 |
</ul>""",unsafe_allow_html=True)
|
| 84 |
st.title('Terminology')
|
| 85 |
st.subheader('Experiment')
|
| 86 |
+
st.markdown("""It's a simple test or a procedure or an investigation which are carried out to discover what will be the consiquences.Given below is one of the example of experminet.
|
| 87 |
""",unsafe_allow_html=True)
|
| 88 |
st.title("Drug Trial Analysis Between Covaxine and Covishiled")
|
| 89 |
total_participants = st.number_input("Total Participants For Covaxine:", min_value=100, max_value=10000, value=1000)
|
|
|
|
| 98 |
fig,axis=plt.subplots()
|
| 99 |
axis.pie(x=[p_side_effects_drug_1,p_side_effects_drug_2],labels=['covaxine','covishield'],autopct="%0.1f%%")
|
| 100 |
st.pyplot(fig)
|
| 101 |
+
st.subheader("Random Experiment")
|
| 102 |
+
st.markdown("""A random experiment is also an experiment bt in order to become a random experiment it show satisfy 2 condition's.
|
| 103 |
+
<ul class="icon-bullet">
|
| 104 |
+
<li>It show have more than one outcome.</li>
|
| 105 |
+
<li>We cannot predict what will be the outcome of the experiment.<li>
|
| 106 |
+
</ul>
|
| 107 |
+
""")
|