DOMMETI commited on
Commit
fea40fa
·
verified ·
1 Parent(s): 0996a69

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -49,9 +49,12 @@ useing three ways \n * Mode \n * Median \n * Mean""")
49
  st.subheader("MODE",divider=True)
50
  st.markdown("""Mode will be giving the centeral tendency based on most frequently occuring data.The major drawback of mode is its frequecy baised it
51
  mostly focus on the data which is occuring most times.Here in this mode we might come across some situation's like """)
52
- st.markdown(''':violet[No_Mode] \n Let's understand why this situation raises for exaple let's take list of numbers [1,2,3,4,5] here we don't have
53
  frequency of numbers repeating in this senario we will come accross No_Mode situaton.
54
  ''')
 
 
 
55
  def mode(*args):
56
  list1 = list(args)
57
  dict1 = {}
 
49
  st.subheader("MODE",divider=True)
50
  st.markdown("""Mode will be giving the centeral tendency based on most frequently occuring data.The major drawback of mode is its frequecy baised it
51
  mostly focus on the data which is occuring most times.Here in this mode we might come across some situation's like """)
52
+ st.markdown(''':violet[No_Mode] \n Let's understand why this situation raises for example let's take list of numbers [1,2,3,4,5] here we don't have
53
  frequency of numbers repeating in this senario we will come accross No_Mode situaton.
54
  ''')
55
+ st.markdown(''':violet[Uni_Mode] \n Let's understand why this situation raises for example let's take list of numbers [1,1,1,2,3,4,5]. here by
56
+ checking the list it will tend to know that the frequency of number 1 is more and it returns the value 1 as output.
57
+ ''')
58
  def mode(*args):
59
  list1 = list(args)
60
  dict1 = {}