API reference for: https://pypi.org/project/stats-tm/
See tutorial and all available classes here


class stats_tm.distribution.BinomialDist(n: int, p: float)
Binomial distribution class for plotting probability distribution and calculating probability mass function/ cumulative probability

    Parameters:
  • n (int): number of trials
  • p (float): probability of success
    Attributes:
  • n (int): number of trials
  • p (float): probability of success
    Methods:
  • plot_dist():
    Plot the probability distribution for a binomial distribution
    Returns:
    plotly.graph_objects.Figure - Plot of the distribution

  • calc_pmf(k: int, plot=True):
    Calculate the probability mass function for a binomial distribution and optionally plot the distribution
    Parameters:
    k (int): number of successes
    plot (bool, optional): If True, return a plot of the distribution with probability mass funtion at k highlighted. Defaults to True.
    Returns:
    plotly.graph_objects.Figure or float - Plot of the distribution with probability mass function at k highlighted or probability mass function at k

  • calc_cum_p(k: int, plot=True):
    Calculate the cumulative probability for a binomial distribution and optionally plot the distribution
    Parameters:
    k (int): number of successes
    plot (bool, optional): If True, return a plot of the distribution with cumulative probability at k highlighted. Defaults to True.
    Returns:
    plotly.graph_objects.Figure or float - Plot of the distribution with cumulative probability at k highlighted or cumulative probability at k