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.

v0.1.0 - First Public Release (Beta)

TBR v0.1.0 is feature-complete and ready for use with:

  • Complete TBR functionality (functional + OOP APIs)
  • 1,227 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? This is our first public release. While comprehensively tested, we're marking it as Beta to gather 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.2.tar.gz (123.9 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.2-py3-none-any.whl (114.8 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: tbr-0.1.2.tar.gz
  • Upload date:
  • Size: 123.9 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.2.tar.gz
Algorithm Hash digest
SHA256 1dab876765386a28fd05308f975c222b10e45328b74e8c862fb76d6e091af06a
MD5 3cbba2d9efd0f19598be47121034fb9e
BLAKE2b-256 d92d04bbac8ab305c721445933934754086be058af1fb57fa0a84099d2ab2899

See more details on using hashes here.

File details

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

File metadata

  • Download URL: tbr-0.1.2-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.2-py3-none-any.whl
Algorithm Hash digest
SHA256 d86b9557dfae1d4f40128ed98c8aad81d759750a6ea968d4f94b9223025574ee
MD5 0dbf52e2ccff5bfe4d68189ca931703a
BLAKE2b-256 27f9d0169510a2ed8d077d4ba93e9357d3400a0eea21b748f2958f29b3404f96

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