Skip to content

Latest commit

 

History

History
52 lines (27 loc) · 1.02 KB

README.md

File metadata and controls

52 lines (27 loc) · 1.02 KB

https://bit.ly/if-staymail https://www.protectedtext.com/4-5-6

#----------------------------------------------datavisualization

import matplotlib.pyplot as plt values = list(map(int,input("Enter Data:").split())) Xrange = [ i for i in range(int(input('Start X:')),int(input('End X: '))+1)] Yrange = [ i for i in range(int(input('Start Y:')),int(input('End Y: '))+1)] Xleave = int(input('Enter distance between X scale: ')) Yleave = int(input('Enter distance between Y scale: ')) plt.hist(values) plt.xticks(Xrange[::Xleave]) plt.yticks(Yrange[::Yleave]) plt.title("Experiment 5") plt.xlabel("Value Groups") plt.ylabel("Frequency") #plt.savefig("hist.png") plt.show()

Screenshot

#--------------------------------------------kmean1d

Screenshot

#--------------------------------------------kmean2d

Screenshot

#--------------------------------------------apriori

Screenshot

Screenshot

#------------------------Bayesian Screenshot