How to get a list of all distributions in Mathematica

Is there a way to get all parametric distributions in Mathematica as a list without typing it all in?

{NormalDistribution[x,y], UniformDistribution[{x,y}], ExponentialDistribution[x]...}

      

Thank!

+3


source to share


1 answer


Try

Names["*Distribution"]

      



and use this symbol list to build what you need. You can refer to the help "ToExpression", "StringJoin".

+3


source







All Articles