Added extra showcase options

This commit is contained in:
Ozzie Gooen 2020-03-04 10:27:50 +00:00
parent f0f76ff96e
commit fc0400f093

View File

@ -20,23 +20,68 @@ let setup = dist =>
~sampleCount=10000, ~sampleCount=10000,
~outputXYPoints=2000, ~outputXYPoints=2000,
~truncateTo=Some(1000), ~truncateTo=Some(1000),
); )
|> E.O.React.fmapOrNull(distPlus => <DistPlusPlot distPlus />);
let distributions = () => let distributions = () =>
<div> <div>
<div> <div>
<h2> {"Single-Discrete" |> ReasonReact.string} </h2> <h2 className="text-gray-800 text-xl font-bold">
{"Initial Section" |> ReasonReact.string}
</h2>
<h3 className="text-gray-600 text-lg font-bold">
{"Continuous" |> ReasonReact.string}
</h3>
{setup(DistPlusIngredients.make(~guesstimatorString="5 to 20", ()))}
<h3 className="text-gray-600 text-lg font-bold">
{"Discrete" |> ReasonReact.string}
</h3>
{setup(
DistPlusIngredients.make(~guesstimatorString="floor(10 to 20)", ()),
)}
<h3 className="text-gray-600 text-lg font-bold">
{"Mixed" |> ReasonReact.string}
</h3>
{setup( {setup(
DistPlusIngredients.make( DistPlusIngredients.make(
~guesstimatorString= ~guesstimatorString="mm(5 to 20, floor(20 to 30), [.5,.5])",
"uniform(0,1) > 0.3 ? lognormal(6.652, -0.41): 0",
~domain=
RightLimited({xPoint: 50.0, excludingProbabilityMass: 0.3}),
(), (),
), ),
) )}
|> E.O.React.fmapOrNull(distPlus => <DistPlusPlot distPlus />)} <h2 className="text-gray-800 text-xl font-bold">
{"Over Time" |> ReasonReact.string}
</h2>
<h3 className="text-gray-600 text-lg font-bold">
{"Continuous" |> ReasonReact.string}
</h3>
{setup(
DistPlusIngredients.make(
~guesstimatorString="5 to 20",
~unit=TimeDistribution({zero: MomentRe.momentNow(), unit: `years}),
(),
),
)}
<h3 className="text-gray-600 text-lg font-bold">
{"Discrete" |> ReasonReact.string}
</h3>
{setup(
DistPlusIngredients.make(
~guesstimatorString="floor(10 to 20)",
~unit=TimeDistribution({zero: MomentRe.momentNow(), unit: `years}),
(),
),
)}
<h3 className="text-gray-600 text-lg font-bold">
{"Mixed" |> ReasonReact.string}
</h3>
{setup(
DistPlusIngredients.make(
~guesstimatorString="mm(5 to 20, floor(20 to 30), [.5,.5])",
~unit=TimeDistribution({zero: MomentRe.momentNow(), unit: `years}),
(),
),
)}
</div> </div>
</div>; </div>;
let entry = EntryTypes.(entry(~title="Pdf", ~render=distributions)); let entry = EntryTypes.(entry(~title="Pdf", ~render=distributions));