DOMMETI commited on
Commit
53af870
·
verified ·
1 Parent(s): 5e982d2

Update pages/Measurement_of_disperssion.py

Browse files
pages/Measurement_of_disperssion.py CHANGED
@@ -49,11 +49,9 @@ for i in value:
49
  if i.isdigit():
50
  list1.append(int(i))
51
  # Check if list1 is not empty and calculate the range
52
- if list1:
53
- result = absolute_range(list1)
54
- st.write("Absolute Range:", result)
55
- else:
56
- st.write("Please enter valid numbers.")
57
 
58
  st.markdown(''':orange[**Quartile Deviation**] is one of the measure to find the disperssion.In this type the data is divided into 4 equal parts.
59
  It will mostly focus on the central data.
 
49
  if i.isdigit():
50
  list1.append(int(i))
51
  # Check if list1 is not empty and calculate the range
52
+ result = absolute_range(list1)
53
+ st.write("Absolute Range:", result)
54
+
 
 
55
 
56
  st.markdown(''':orange[**Quartile Deviation**] is one of the measure to find the disperssion.In this type the data is divided into 4 equal parts.
57
  It will mostly focus on the central data.