pystats.pnorm ============= .. py:module:: pystats.pnorm Functions --------- .. autoapisummary:: pystats.pnorm.pnorm Module Contents --------------- .. py:function:: pnorm(q, mean=0, sd=1, lower_tail=True) This function returns the value of the cumulative density function (cdf) of the normal distribution with mean equal to `mean`, standard deviation equal to `sd`, at a certain point q. :param q: The number of random variables to be simulated. :type q: float :param mean: The mean value of the normal distribution. Default is 0. :type mean: float, optional :param sd: The standard deviation of the normal distribution. Default is 1. :type sd: float, optional :param lower_tail: If True, probabilities are P(X < q), otherwise, P(X > q). Default is True. :type lower_tail: binary, optional :returns: A probability value at the given quantile value of the specified cdf. :rtype: numpy.float64 .. rubric:: Examples >>> pnorm(69, mean=60, sd=5, lower_tail=False) 0.03593032