Crates.io | csta |
lib.rs | csta |
version | 1.0.1 |
source | src |
created_at | 2023-05-13 02:48:38.658284 |
updated_at | 2024-03-12 16:15:03.272647 |
description | A personal statistics library |
homepage | |
repository | |
max_upload_size | |
id | 863498 |
size | 63,739 |
A personal statistics library, with montecarlo support.
Add csta
to Cargo.toml.
[dependencies]
csta = "1.0.0"
csta_derive = version = "1.0.0"
rand = "0.8.5"
let mut hist = Hist::with_buckets(0.0, 6.0, 6);
let mut rng = thread_rng();
for _ in 0..1000 {
let x = rng.gen_range(0.0..6.0);
hist.add(&x);
}
println!("avg: {}, sd: {}", hist.average(), hist.variance().sqrt());
For saving the histogram, the struct contains a save function.
hist.save("./histogram");
As a convenience function, there is save numpy
, which makes the plotting using matplotlib easier.
hist.save_numpy("./histogram");
import matplotlib.pyplot as plt
import numpy as np
[counts, bins] = np.loadtxt("histogram", delimiter=",")
# the first count is a filler, so we remove it
counts = counts[1:]
plt.stairs(counts, bins, fill=True)
plt.show()
A more complete example is on this file. And here the code of the plotter in python.
Randomizable is a derivable trait to produce a struct with random values.
#[derive(Debug, Randomizable)]
struct Dice<const N: usize>(#[rng(range(1..=N))] usize);
Any randomizable can be used in a Montecarlo iterator.
MonteCarlo::default()
.into_iter()
.take(10)
.for_each(|dice: Dice<6> /* type anotations needed */| {
println!("dice: {:?}", dice);
});
Any tuple of randomizables is randomizable, f64 is randomizable. To see more about the Randomizable derive and montecarlo, go to this file.
Provides indexing utilities, used in the ising system.
Markov chain system. Used in ising and within the Lennard-Jones in particles
Commonly used types for easier usage of the library.