import streamlit as st import pandas as pd import numpy as np import matplotlib.pyplot as plt import random st.markdown(""" """, unsafe_allow_html=True) st.title("REPRESENTATION OF PROBABILITY") st.markdown("""Probability is represented in two ways """,unsafe_allow_html=True) st.header("Set Theory or Venn Diagram") st.write(f"Representing the outcomes in venn Diagram") st.image("https://cdn-uploads.huggingface.co/production/uploads/64c972774515835c4dadd754/t8lAbqD7O54hSyYjiIika.png",caption="Venn Diagram",width=400) st.header("Contigency Table") st.write(f"Representing all the possible sample space") st.image("https://cdn-uploads.huggingface.co/production/uploads/64c972774515835c4dadd754/NHZe8_0ht2WGoZ4VMD2Wr.png",caption="Venn Diagram",width=400)