Skip to main content

A comprehensive, domain-agnostic Python package for Time-Based Regression (TBR) analysis

Project description

TBR - Time-Based Regression Analysis Package

PyPI version Build Status Coverage Status Python 3.8+ License: BSD-3-Clause Code style: black Development Status

A comprehensive, domain-agnostic Python package for Time-Based Regression (TBR) analysis. Perform rigorous statistical analysis of treatment/control group time series data across any industry - marketing, medical research, economics, and more.

Status: Beta

TBR is feature-complete and ready for production use with:

  • Complete TBR functionality (functional + OOP APIs)
  • 1,200+ tests with 100% code coverage
  • Intuitive, type-safe API interfaces
  • Export utilities (JSON, CSV)
  • Performance validated (linear O(n) scalability)
  • Cross-platform support (Python 3.8-3.12)

Why Beta? While comprehensively tested, we're gathering real-world feedback before declaring v1.0 stable. We encourage production use and welcome your feedback!

Features

  • Domain-Agnostic: Works with any treatment/control group time series data
  • Comprehensive Analysis: Lift calculation, counterfactual predictions, statistical inference
  • Statistical Rigor: Credible intervals, significance tests, posterior probability assessments
  • Flexible: Temporal and cumulative analysis, subinterval analysis, incremental analysis
  • Well-Tested: Type hints, 100% code coverage, comprehensive test suite
  • Easy to Use: Simple, intuitive API for both quick analysis and advanced workflows

Installation

pip install tbr

Optional dependencies:

pip install tbr[dev]       # Development tools
pip install tbr[docs]      # Documentation tools
pip install tbr[examples]  # Example dependencies

Quick Start

import pandas as pd
import numpy as np
from tbr import TBRAnalysis

# Create example time series data
np.random.seed(42)
dates = pd.date_range('2023-01-01', periods=100, freq='D')
data = pd.DataFrame({
    'date': dates,
    'control': np.random.normal(100, 10, 100),
    'test': np.random.normal(105, 10, 100)
})

# Initialize and fit model
model = TBRAnalysis(level=0.90)
model.fit(
    data=data,
    time_col='date',
    control_col='control',
    test_col='test',
    pretest_start='2023-01-01',
    test_start='2023-02-15',
    test_end='2023-04-10'
)

# Get results
summary = model.summarize()
print(f"Treatment Effect: {summary.estimate:.2f}")
print(f"95% CI: [{summary.ci_lower:.2f}, {summary.ci_upper:.2f}]")
print(f"Significant: {summary.is_significant()}")

# Additional capabilities
predictions = model.predict()
subinterval = model.analyze_subinterval(start_day=1, end_day=10)
incremental = model.summarize_incremental()
summary.to_json('results.json')

Key Capabilities

  • Counterfactual Predictions: Estimates what would have happened without treatment
  • Lift Calculations: Treatment effect with statistical uncertainty quantification
  • Credible Intervals: Bayesian confidence bounds using t-distribution
  • Significance Testing: Posterior probability of positive/negative effects
  • Flexible Analysis: Subinterval analysis, incremental tracking, custom confidence levels

Mathematical Foundation

TBR analysis implements rigorous statistical methods based on Ordinary Least Squares (OLS) regression, counterfactual prediction with uncertainty quantification, Bayesian inference for credible intervals, and variance decomposition.

Documentation

  • Examples: See examples/ directory in the repository
  • Full Documentation: Coming in v0.2.0

Version Compatibility

  • Python: 3.8+ (tested on 3.8, 3.9, 3.10, 3.11, 3.12)
  • pandas: 2.0+
  • numpy: 1.24+
  • scipy: 1.10+
  • statsmodels: 0.14+

License

This project is licensed under the BSD-3-Clause License - see the LICENSE file for details.

Support

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tbr-0.1.4.tar.gz (123.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

tbr-0.1.4-py3-none-any.whl (114.8 kB view details)

Uploaded Python 3

File details

Details for the file tbr-0.1.4.tar.gz.

File metadata

  • Download URL: tbr-0.1.4.tar.gz
  • Upload date:
  • Size: 123.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for tbr-0.1.4.tar.gz
Algorithm Hash digest
SHA256 37a06d6e8333e0f70d0f28690496d00d57986cd95ba9ae1c713a469c0005dbb1
MD5 3f3d8f1b6e1a3bd7b34d9299c5abb7fc
BLAKE2b-256 02e1c1c63c10f51737620d8a7474600d1d48178c1c60b2e596f18b594336857c

See more details on using hashes here.

File details

Details for the file tbr-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: tbr-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 114.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.9

File hashes

Hashes for tbr-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 55c000948f925ac3e69c17ae875ef95bb1a506184b4fdf9d381c26f4f41b59b7
MD5 5318cdc2a5a00078561f9a28912821d2
BLAKE2b-256 51273496847e1ade82c525964655c5b8184d1dab49fee73831512d6aecf44723

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page