v0.5.0
IntrinsicTimescales v0.5.0
Breaking Changes:
- Plotting capabilities now live inside an extension. What this means is if the user intends to use
acwplotandposterior_predictivefunctions, they would need to firstusing Plots.
New Features:
- Added skip_zero_lag option to
acwfunction. Whentrue, ignores the zero-lag in:tausetting and fits a 3-parameter exponential decay function of the formacf(lag) = A * (exp(-lag / tau) + B). - Option for setting
rngandseedfor reproducibility in the Ornstein-Uhlenbeck process generation.
Example usage:
tau = 1.0
true_D = 1.0
dt = 0.01
duration = 10.0
num_trials = 100
deq_seed = 42
ou, _ = generate_ou_process_sciml(tau, true_D, dt, duration, num_trials, true, rng=Xoshiro(42), deq_seed=deq_seed)acwplotnow indicates the estimated knee frequency with a vertical line. Should make it easier to see ifacwis working properly for:kneeoption.
Minor changes
- Added the tutorial "Navigating the Forest of INT metrics"
- Added "Contribution Guidelines" and "Developer Documentation" to the documentation
- Updated all the docstrings to match the code.
Merged pull requests:
- 25 joss add rng for random function (#26) (@duodenum96)
- 22 acw docstring (#27) (@duodenum96)
- add skip_zero_lag option to
acw(#28) (@duodenum96) - 24 joss documentation (#29) (@duodenum96)
Closed issues: