API
Plot
The Plot module provides functions to create plots of distributions and functions.
Raw functions and distributions are plotted with default parameters, while plot objects created by functions from this module give you more control over chart parameters and access to more complex charts.
dist
Plot.dist(Dist, {xScale?: Scale, yScale?: Scale, showSummary?: Bool}?) => Plot
dists
Plot.dists(List(Dist|Number)|List({name?: String, value: Dist|Number}), {xScale?: Scale, yScale?: Scale, showSummary?: Bool}?) => Plot
numericFn
Plot.numericFn((Number) => Number, {xScale?: Scale, yScale?: Scale, xPoints?: List(Number)}?) => Plot
distFn
Plot.distFn((Number) => Dist, {xScale?: Scale, yScale?: Scale, distXScale?: Scale, xPoints?: List(Number)}?) => Plot
scatter
Plot.scatter({xDist: SampleSetDist, yDist: SampleSetDist, xScale?: Scale, yScale?: Scale}) => Plot