Public
Edited
Mar 25, 2023
1 fork
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
numberOfTrajectories = Math.floor(maxSteps / period)
Insert cell
Insert cell
Insert cell
noiseFunction = d3.randomNormal(0, sigma)
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
growthRate = mu - (sigma * sigma) / 2
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
simulatedTrajectories = {
// Initialise an array of runs
const data = []
// For each run…
for( let r = 0; r < numberOfTrajectories; r++){
// Determine the starting point of the run in the data array so each run is added consecutively in the array.
const startingArrayPos = (r * period)
// Initialise the start of each run with the initialValue and reset the timeStep to 0
data[startingArrayPos] = {timeStep: 0, value: initialValue, run: r}
// Step through each timeStep
for(let t = 1; t < period; t++){
// Determine the previous value, which will be the value of the immediately preceeding timeStep
const previousValue = data[startingArrayPos+t-1]['value']
// Calculate the new value, by multiplying the previous value by mu + a sample from the noise function.
const newValue = previousValue * (mu + noiseFunction())
data[startingArrayPos+t] = {timeStep: t, value: newValue, run: r}
}
}
return data
}

Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more