Calculating probability in normal distribution

Something like this?

using Distributions
dist = Normal(3, 1)
cdf(dist, 1)
3 Likes