114d537c07
Value: [5e-4 to 2e-3]
54 lines
1.1 KiB
Plaintext
54 lines
1.1 KiB
Plaintext
---
|
|
sidebar_position: 2
|
|
title: Language Basics
|
|
---
|
|
|
|
import { SquiggleEditor } from "../../src/components/SquiggleEditor";
|
|
|
|
## Expressions
|
|
|
|
A distribution
|
|
|
|
<SquiggleEditor initialSquiggleString={`mixture(1 to 2, 3, [0.3, 0.7])`} />
|
|
|
|
A number
|
|
|
|
<SquiggleEditor initialSquiggleString="4.321e-3" />
|
|
|
|
Arrays
|
|
|
|
<SquiggleEditor
|
|
initialSquiggleString={`[beta(1,10), 4, isNormalized(toSampleSet(1 to 2))]`}
|
|
/>
|
|
|
|
Records
|
|
|
|
<SquiggleEditor
|
|
initialSquiggleString={`d = {dist: triangular(0, 1, 2), weight: 0.25}
|
|
d.dist`}
|
|
/>
|
|
|
|
## Statements
|
|
|
|
A statement assigns expressions to names. It looks like `<symbol> = <expression>`
|
|
|
|
<SquiggleEditor
|
|
initialSquiggleString={`value_of_work = 10 to 70
|
|
5 + value_of_work / 75`}
|
|
/>
|
|
|
|
### Functions
|
|
|
|
We can define functions
|
|
|
|
<SquiggleEditor
|
|
initialSquiggleString={`ozzie_estimate(t) = lognormal(1, t ^ 1.01)
|
|
nuño_estimate(t, m) = mixture(0.5 to 2, normal(m, t ^ 1.25))
|
|
ozzie_estimate(5) * nuño_estimate(5.01, 1)`}
|
|
/>
|
|
|
|
## See more
|
|
|
|
- [Functions reference](https://squiggle-language.com/docs/Features/Functions)
|
|
- [Gallery](https://squiggle-language.com/docs/Discussions/Gallery)
|