Questions tagged [distribution]

This tag is dedicated to discussing statistical distributions, including how they are used and their various properties.

What is the method to specify nu=4.0 (or any desired value) when utilizing the StudentsT() distribution in arch_model within Python?

How can I set nu=4.0 in this situation? model = arch_model(data) from arch.univariate import StudentsT model.distribution = StudentsT() ...

What is the best way to annotate specific portions of the cumulative total in matplotlib?

I am working on creating a basic histogram using matplotlib in Python. The histogram will display the distribution of comment lengths based on several thousand comments. Here is the code I have so far: x = [60, 55, 2, 30, ..., 190] plt.hist(x, bins=100) ...