Wolfram Language

Knowledgebase Expansion

Access and Manipulate Curated Custom Entities

Import an entity store with data about univariate probability distributions.

In[1]:=
Click for copyable input
es = CloudGet@CloudObject[ "https://www.wolframcloud.com/objects/user-8a7d28b9-c01d-46b8-ba65-\ c3daa0ded865/ProbabilityDistribution-EntityStore"]
Out[1]=

Set it as one of the entity stores automatically accessed by the Entity framework.

In[2]:=
Click for copyable input
$EntityStores = {es};

There are 465 probability distributions in this store.

In[3]:=
Click for copyable input
EntityValue["ProbabilityDistribution", "EntityCount"]
Out[3]=

And there are up to 67 properties per distribution.

In[4]:=
Click for copyable input
EntityValue["ProbabilityDistribution", "PropertyCount"]
Out[4]=

This is the data available for the normal distribution.

In[5]:=
Click for copyable input
EntityProperty["ProbabilityDistribution", "SamplePlottingParameters"]
Out[5]=
show complete Wolfram Language input
In[6]:=
Click for copyable input
data = Normal[ EntityValue[Entity["ProbabilityDistribution", "Normal"], "PropertyAssociation"]]; data = DeleteCases[data, EntityProperty["ProbabilityDistribution", "SamplePlottingParameters"] -> _]; data = data //. HoldPattern[Function[a_, b_]] :> b //. HoldPattern[Inactive[ConditionalExpression][a_, b_]] :> Row[{a, Style[" for ", Gray], b}]; data = Activate[data, Sqrt | DirectedInfinity | Piecewise | _Derivative]; Grid[List @@@ data, Alignment -> Left, Dividers -> All, Background -> {None, {{LightGray, White}}}] // TraditionalForm
Out[6]//TraditionalForm=

Related Examples

de es fr ja ko pt-br ru zh