Skip to contents

Pre-computed results from a complete TE-DiD analysis using the sample datasets, provided for quick demonstration and testing purposes.

Usage

sample_tedid_results

Format

A named list containing:

data

List with financial, policy, and treatment group data

networks

List with network weights, TE matrices, and statistics

tedid

List with TE-DiD models and results

summary

Analysis summary statistics

Details

This dataset contains the complete output from run_complete_tedid_analysis() using the sample data, allowing users to explore results structure and visualization options without running the full analysis pipeline.

Key components include:

  • Transfer entropy matrices for different periods

  • Network-Informed Contagion Index (NICI) values

  • Network-Informed Policy Intensity (NIPI) measures

  • TE-DiD model estimation results

  • Network statistics and contagion analysis

Examples

if (FALSE) { # \dontrun{
data(sample_tedid_results)

# View analysis summary
print(sample_tedid_results$summary)

# Access model results
summary(sample_tedid_results$tedid$main_model)

# Network statistics
head(sample_tedid_results$networks$statistics)
} # }