causal-hub 0.0.4

A library for causal models, inference and discovery.
Documentation
use itertools::Itertools;
use rand::{Rng, seq::index::sample};

use crate::datasets::{CatTrj, CatTrjEv, CatTrjEvT, CatTrjs, CatTrjsEv, Dataset};

/// A struct representing a random evidence generator.
pub struct RngEv<'a, R, D> {
    rng: &'a mut R,
    dataset: &'a D,
    p: f64,
}

impl<'a, R, D> RngEv<'a, R, D> {
    /// Creates a new `RngEv` instance.
    ///
    /// # Arguments
    ///
    /// * `rng` - A mutable reference to a random number generator.
    /// * `dataset` - A reference to the dataset.
    /// * `p` - The probability of selecting an evidence.
    ///
    /// # Panics
    ///
    /// Panics if the probability is not in [0, 1].
    ///
    /// # Returns
    ///
    /// A new `RngEv` instance.
    pub fn new(rng: &'a mut R, dataset: &'a D, p: f64) -> Self {
        // Assert that the probability is in [0, 1].
        assert!((0.0..=1.0).contains(&p), "Probability must be in [0, 1]");

        Self { rng, dataset, p }
    }
}

impl<R: Rng> RngEv<'_, R, CatTrj> {
    /// Generates random evidence from the trajectory.
    ///
    /// # Returns
    ///
    /// A `CatTrjEv` instance containing the random evidence.
    ///
    pub fn random(&mut self) -> CatTrjEv {
        // Get shortened variable type.
        use CatTrjEvT as E;

        // Get times.
        let times = self.dataset.times();
        // Get events.
        let events = self.dataset.values().rows();
        // Zip times and events.
        let times_events = times.into_iter().zip(events);

        // Iterate over (time, event) pairs.
        let evidence = times_events
            .tuple_windows()
            .filter_map(|((&start_time, v), (&end_time, _))| {
                // Choose if the event is selected.
                if !self.rng.random_bool(self.p) {
                    // If the event is not selected, skip it.
                    return None;
                }
                // Select how many events to select.
                let n = self.rng.random_range(1..=v.len());
                // Sample the events.
                let evidence = sample(self.rng, v.len(), n).into_iter().map(move |index| {
                    // Get label and state.
                    let (event, state) = (index, v[index] as usize);
                    // Create the evidence.
                    E::CertainPositiveInterval {
                        event,
                        state,
                        start_time,
                        end_time,
                    }
                });
                // Return the evidences.
                Some(evidence)
            })
            .flatten();

        // Collect the evidence.
        CatTrjEv::new(self.dataset.states().clone(), evidence)
    }
}

impl<R: Rng> RngEv<'_, R, CatTrjs> {
    /// Generates random evidence from the trajectories.
    ///
    /// # Returns
    ///
    /// A `CatTrjsEv` instance containing the random evidence.
    ///
    pub fn random(&mut self) -> CatTrjsEv {
        self.dataset
            .values()
            .iter()
            .map(|trj| RngEv::new(&mut self.rng, trj, self.p).random())
            .collect()
    }
}