myDict={'distributionType':'Normal','mean':self.Normal[0][0],'stdev':self.Normal[0][1],'min':0,'max':(self.Normal[0][0]+3*self.Normal[0][1])}#Create a dictionary with keys distribution's and distribution's parameters names and the parameters' values
myDict={'distributionType':'Normal','mean':self.Normal[0][0],'stdev':self.Normal[0][1],'min':0,'max':(self.Normal[0][0]+3*self.Normal[0][1])}#Create a dictionary with keys distribution's and distribution's parameters names and the parameters' values
returnmyDict#If there is no Error return the dictionary with the Normal distribution parameters for the given data sample
returnmyDict#If there is no Error return the dictionary with the Normal distribution parameters for the given data sample
defFixed_distrfit(self,data):
data=robjects.FloatVector(data)#The given data sample changes into float vector in order to be handled by RPy2