DOMMETI commited on
Commit
c33c88e
·
verified ·
1 Parent(s): 4cf2fc4

Update pages/Measurement_of_Central_Tendency.py

Browse files
pages/Measurement_of_Central_Tendency.py CHANGED
@@ -96,6 +96,7 @@ checking the frequency in list we come across a situtaion where we will find thr
96
  st.markdown(''':violet[Multi_Mode] \n Let's understand why this situation raises for example let's take list of numbers [1,1,2,2,3,3,4,4,5]. here by
97
  checking the frequency in list we come across a situtaion where we will find more than three maximun frequecy repeated value hence the output will be Multi_Mode.
98
  ''',unsafe_allow_html=True)
 
99
  def mode(*args):
100
  list1 = list(args)
101
  dict1 = {}
 
96
  st.markdown(''':violet[Multi_Mode] \n Let's understand why this situation raises for example let's take list of numbers [1,1,2,2,3,3,4,4,5]. here by
97
  checking the frequency in list we come across a situtaion where we will find more than three maximun frequecy repeated value hence the output will be Multi_Mode.
98
  ''',unsafe_allow_html=True)
99
+ st.title("Calculate Mode")
100
  def mode(*args):
101
  list1 = list(args)
102
  dict1 = {}