squiggle/packages/website/docs/Api/DistPointSet.md

51 lines
1.3 KiB
Markdown
Raw Normal View History

2022-06-05 20:59:45 +00:00
---
2022-06-11 00:35:48 +00:00
sidebar_position: 4
2022-06-05 20:59:45 +00:00
title: Point Set Distribution
---
2022-06-06 05:16:29 +00:00
### make
2022-06-11 15:57:02 +00:00
2022-06-13 04:19:28 +00:00
Converts the distribution in question into a point set distribution. If the distribution is symbolic, then it does this by taking the quantiles. If the distribution is a sample set, then it uses a version of kernel density estimation to approximate the point set format. One complication of this latter process is that if there is a high proportion of overlapping samples (samples that are exactly the same as each other), it will convert these samples into discrete point masses. Eventually we'd like to add further methods to help adjust this process.
2022-06-06 05:16:29 +00:00
```
PointSet.make: (distribution) => pointSetDist
```
2022-06-05 20:59:45 +00:00
2022-06-06 05:16:29 +00:00
### makeContinuous
2022-06-11 15:57:02 +00:00
2022-06-13 04:19:28 +00:00
**TODO: Now called "toContinuousPointSet"**
Converts a set of x-y coordinates directly into a continuous distribution.
2022-06-06 05:16:29 +00:00
```
PointSet.makeContinuous: (list<{x: number, y: number}>) => pointSetDist
2022-06-05 20:59:45 +00:00
```
2022-06-13 04:19:28 +00:00
```javascript
PointSet.makeContinuous([
{ x: 0, y: 0.1 },
{ x: 1, y: 0.2 },
{ x: 2, y: 0.15 },
{ x: 3, y: 0.1 },
2022-06-13 19:10:24 +00:00
]);
2022-06-13 04:19:28 +00:00
```
2022-06-06 05:16:29 +00:00
### makeDiscrete
2022-06-13 19:10:24 +00:00
2022-06-13 04:19:28 +00:00
**TODO: Now called "toDiscretePointSet"**
Converts a set of x-y coordinates directly into a discrete distribution.
2022-06-11 15:57:02 +00:00
2022-06-06 05:16:29 +00:00
```
PointSet.makeDiscrete: (list<{x: number, y: number}>) => pointSetDist
2022-06-11 15:57:02 +00:00
```
2022-06-13 04:19:28 +00:00
```javascript
PointSet.makeDiscrete([
2022-06-13 04:19:28 +00:00
{ x: 0, y: 0.1 },
{ x: 1, y: 0.2 },
{ x: 2, y: 0.15 },
{ x: 3, y: 0.1 },
2022-06-13 19:10:24 +00:00
]);
2022-06-13 04:19:28 +00:00
```