point_process 0.1.2

A crate for simulating random point processes.
Documentation

Rust implementation of Point processes

Crates.io Status License

Point processes are useful statistical models used in fields such as seismology, telecommunications, epidemiology, financial mathematics. They help to model such things as the arrival of random events in time.

variablepoisson

This crate provides functions to simulate point processes in the Rust programming language.

To run the examples, do for instance

cargo run --example variable_poisson

You can grab a plot using gnuplot:

gnuplot -p < test.gnuplot

For now, only one-dimensional point processes have been implemented.

Are implemented:

  • Poisson point process (homogeneous and inhomogeneous)
  • Hawkes processes

The examples show how to use the API.