I want to generate a list (or array) of all positive numbers, and all the numbers need to be within 0-1.
I've seen one code,
numpy.random.normal([mean], [standard deviation], [array size]).
But it generate both positive an negative numbers.
Any other codes/formula that can solve it?
Based on the below codes provided by Cardstdani, I found that
np.random.normal([mean], [STD], [sample size]), the mean value would be probably incorrect after checking it. For example, if mean = 1.13, STD = 0.339 and size = 4.