beta-distribution

Beta distribution with bounds at [0.1, 0.5]

Beta distribution with bounds at [0.1, 0.5] Question: I’d like to construct a beta distribution where the mu and sigma are 0.28 and 0.003, respectively, and the distribution is bound at [0.1, 0.5]. import numpy as np import pandas as pd import plotly.express as px from scipy import stats mu = 0.28 stdev = 0.003 …

Total answers: 2