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


class stats_tm.distribution.StudentTDist(mu: float, sigma: float)

    Parameters:
  • v (int): degree of freedom of the distribution
    Attributes:
  • v (int): degree of freedom of the distribution
    Methods:
  • plot_dist():
    Plot the probability distribution for a Student's t distribution
    Returns:
    plotly.graph_objects.Figure - Plot of the distribution

  • calc_pdf(x: float, plot=True):
    Calculate the probability density function for a Student's t distribution and optionally plot the distribution
    Parameters:
    x (float): value of x
    plot (bool, optional): If True, return a plot of the distribution with probability density function at x highlighted. Defaults to True.
    Returns:
    plotly.graph_objects.Figure or float - Plot of the distribution with probability density function at x highlighted or probability density function at x

  • calc_cum_p(x: float, plot=True):
    Calculate the cumulative probability for a Student's t distribution and optionally plot the distribution
    Parameters:
    x (float): value of x
    plot (bool, optional): If True, return a plot of the distribution with cumulative probability at x highlighted. Defaults to True.
    Returns:
    plotly.graph_objects.Figure or float - Plot of the distribution with cumulative probability at x highlighted or cumulative probability at x