DOMMETI commited on
Commit
e596332
·
verified ·
1 Parent(s): c0923e5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -66,7 +66,7 @@ checking the frequency in list we come across a situtaion where we will find thr
66
  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
67
  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.
68
  ''')
69
- st.title("Mode")
70
  def mode(*args):
71
  list1 = list(args)
72
  dict1 = {}
 
66
  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
67
  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.
68
  ''')
69
+ st.title("Calculate Mode")
70
  def mode(*args):
71
  list1 = list(args)
72
  dict1 = {}