TranCIT (Transient Causal Interaction Toolbox) is a Python package for quantifying causal relationships in multivariate time series data. It provides methods for analyzing directional influences using model-based statistical tools, inspired by information-theoretic and autoregressive frameworks.
- Dynamic Causal Strength (DCS): Time-varying causal relationships
- Transfer Entropy (TE): Information-theoretic causality measures
- Granger Causality (GC): Linear causality detection
- Relative Dynamic Causal Strength (rDCS): Event-based causality
- VAR-based Modeling: Vector autoregressive time series analysis
- BIC Model Selection: Automatic model order selection
- Bootstrap Support: Statistical significance testing
- DeSnap Analysis: Debiased statistical analysis
- Pipeline Architecture: Modular, stage-based analysis pipeline
pip install trancitgit clone https://github.com/CMC-lab/TranCIT.git
cd TranCIT
pip install -e .git clone https://github.com/CMC-lab/TranCIT.git
cd TranCIT
pip install -e ".[dev]"import numpy as np
from trancit import DCSCalculator, generate_signals
# Generate synthetic data
data, _, _ = generate_signals(T=1000, Ntrial=20, h=0.1,
gamma1=0.5, gamma2=0.5,
Omega1=1.0, Omega2=1.2)
# Create DCS calculator
calculator = DCSCalculator(model_order=4, time_mode="inhomo")
# Perform analysis
result = calculator.analyze(data)
print(f"DCS shape: {result.causal_strength.shape}")
print(f"Transfer Entropy shape: {result.transfer_entropy.shape}")import numpy as np
from trancit import PipelineOrchestrator, generate_signals
from trancit.config import (
PipelineConfig, PipelineOptions, DetectionParams,
CausalParams, BicParams, OutputParams
)
# Generate data
data, _, _ = generate_signals(T=1200, Ntrial=20, h=0.1,
gamma1=0.5, gamma2=0.5,
Omega1=1.0, Omega2=1.2)
original_signal = np.mean(data, axis=2)
# Create detection signal: use second variable which often has clearer peaks
# The detection signal must be 2D with shape (2, T)
detection_var = original_signal[1, :]
detection_signal = np.vstack([detection_var, detection_var])
# Configure pipeline
config = PipelineConfig(
options=PipelineOptions(detection=True, causal_analysis=True),
detection=DetectionParams(thres_ratio=1.2, align_type="peak",
l_extract=150, l_start=75),
bic=BicParams(morder=4),
causal=CausalParams(ref_time=75, estim_mode="OLS"),
output=OutputParams(file_keyword="example"),
)
# Run analysis
orchestrator = PipelineOrchestrator(config)
try:
result = orchestrator.run(original_signal, detection_signal)
# Access results
if result.results.get("CausalOutput"):
dcs_values = result.results["CausalOutput"]["OLS"]["DCS"]
te_values = result.results["CausalOutput"]["OLS"]["TE"]
print(f"DCS shape: {dcs_values.shape}")
else:
print("No events detected. Try adjusting thres_ratio or use real data.")
except Exception as e:
print(f"Pipeline failed: {e}")
print("Note: Event detection may fail with synthetic data. ")
print("For reliable results, use real data or adjust detection parameters.")import numpy as np
from trancit import VAREstimator
# Generate sample data
data = np.random.randn(2, 1000, 20) # (n_vars, n_obs, n_trials)
# VAR estimation
estimator = VAREstimator(model_order=4, time_mode="inhomo")
coefficients, residuals, log_likelihood, hessian_sum = (
estimator.estimate_var_coefficients(
data, model_order=4, max_model_order=6,
time_mode="inhomo", lag_mode="infocrit"
)
)
print(f"Coefficients shape: {coefficients.shape}")
print(f"Log-likelihood: {log_likelihood:.4f}")By default, TranCIT uses INFO-level logging, which provides detailed progress information during analysis. If you find the logging output too verbose for your use case, you can reduce it:
import logging
# Reduce logging to show only warnings and errors
logging.getLogger("trancit").setLevel(logging.WARNING)
# Or set to ERROR for minimal output
logging.getLogger("trancit").setLevel(logging.ERROR)
# For more detail, use DEBUG
logging.getLogger("trancit").setLevel(logging.DEBUG)Note: The examples above will show INFO-level logging by default. To reduce verbosity, add the logging configuration at the beginning of your script. For debugging purposes, you can increase verbosity using logging.DEBUG.
For comprehensive documentation, tutorials, and API reference:
π ReadTheDocs Documentation
- Basic Usage: Simple causality analysis
- CA3-CA1 Causality Analysis: Local field potential causality analysis
- DCS Introduction: Interactive tutorial
This package implements methods from:
- Shao et al. (2023): Information theoretic measures of causal influences during transient neural events
- Granger Causality: Linear causality detection in time series
- Transfer Entropy: Information-theoretic causality measures
# Run all tests
pytest
# Run with coverage
pytest --cov=trancit --cov-report=html
# Run linting
flake8 trancit/ tests/
# Format code
black trancit/ tests/We welcome contributions! Please see our Contributing Guidelines for details.
git clone https://github.com/CMC-lab/TranCIT.git
cd TranCIT
pip install -e ".[dev]"
pre-commit installIf you use TranCIT in your research, please cite:
@article{shao2023information,
title={Information theoretic measures of causal influences during transient neural events},
author={Shao, Kaidi and Logothetis, Nikos K and Besserve, Michel},
journal={Frontiers in Network Physiology},
volume={3},
pages={1085347},
year={2023},
publisher={Frontiers Media SA}
}
@article{nouri2025trancit_joss,
title={TranCIT: Transient Causal Interaction Toolbox},
author={Nouri, Salar and Shao, Kaidi and Safavi, Shervin},
journal={Journal of Open Source Software},
volume={10},
number={116},
pages={9302},
year={2025},
doi={10.21105/joss.09302},
url={https://doi.org/10.21105/joss.09302}
}
@article{nouri2025trancit,
title={TranCIT: Transient Causal Interaction Toolbox},
author={Nouri, Salar and Shao, Kaidi and Safavi, Shervin},
year={2025},
journal={arXiv preprint arXiv:2509.00602},
url={https://doi.org/10.48550/arXiv.2509.00602}
}And cite this software package:
@software{nouri_2025_trancit,
author = {Nouri, Salar and
Shao, Kaidi and
Safavi, Shervin},
title = {TranCIT: Transient Causal Interaction Toolbox},
month = aug,
year = 2025,
publisher = {Zenodo},
doi = {10.5281/zenodo.18098917},
url = {https://doi.org/10.5281/zenodo.18098917},
}This project is licensed under the BSD 2-Clause License. See the LICENSE file for details.
- Based on research from the CMC-Lab
- Inspired by information-theoretic causality methods
- Built with support from the scientific Python community
- Maintainer: Salar Nouri (salr.nouri@gmail.com)
- Issues: GitHub Issues
- Documentation: ReadTheDocs