WLJS LogoWLJS Notebook

LearnedDistribution

LearnedDistribution[...] represents a distribution generated by LearnDistribution.

Examples

Learn a distribution from data:

data = RandomReal[NormalDistribution[], 1000];
dist = LearnDistribution[data]

Sample from learned distribution:

RandomVariate[dist, 10]

Plot PDF:

SmoothHistogram[RandomVariate[dist, 1000]]

Please visit the official Wolfram Language Reference for more details.

On this page