Skip to content

Conversation

@FRANCIS-CASIMIR
Copy link

Mode of a data set

a=[]
print("THE DATA SET CAN BE UN-SORTED AND THE ELEMENTS NEED NOT BE UNIQUE")
print("*** **** *** *** ** ********* *** *** ******** **** *** ** ")
print("PRESS * TO STOP ENETRING ELEMENTS")
print("
* ** **** ******** ********")
n=input("Enter the first element")
while(n!='*'):
y=int(n)
a.append(y)
n=input("Enter the next element")
print("You have eneterd the following set of data:",a)
modes=[]
old_count=0
new_count=0
i=0
evalted=[]
for x in a:
if x in evalted:
pass
else:
new_count=a.count(x)
if old_count<new_count:
modes[0:]=[]
modes.append(x)
old_count=new_count
elif old_count==new_count:
modes.append(x)
old_count=new_count
evalted.append(x)
i+=1
print("The mode/s is/are:",modes)

WAITING FOR YOUR EVALUATION
@FRANCIS-CASIMIR FRANCIS-CASIMIR changed the title Update and rename README.md to SOLUTION MODE OF A DATA SET Jun 3, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant