Causal inference using Propensity Score Matching and Euclidean LCG method
Project description
Causal Inference using PSM
Background
Propensity score matching is a statistical technique used to estimate the effect of a treatment or intervention on an outcome of interest. It is commonly used in observational studies, where the assignment of treatment or exposure to a particular group is not randomized.
The idea behind propensity score matching is to balance the characteristics of the treatment and control groups by matching individuals with similar propensity scores, which are the probabilities of receiving the treatment or intervention based on observed covariates. This helps to control for confounding factors and reduce selection bias, allowing for a more accurate estimation of the treatment effect.
Overall, propensity score matching is a useful tool for researchers to make causal inferences in observational studies, although it is important to consider the limitations and assumptions of this method.
Installation Guide
This function has been uploaded to pypi so you can type on your prompt as code below
pip install causal-inference-aagm
Then import the library
from causalinference_aagm.matching import PropensityScoreMatch
If error, download (matching.py)[tsel_aagm/matching.py] then
from matching import *
Requirements Library
This python requires related package more importantly python_requires='>=3.1', so that package can be install Make sure the other packages meet the requirements below
- pandas>=1.1.5,
- numpy>=1.18.5,
- scipy>=1.2.0,
- matplotlib>=3.1.0,
- statsmodels>=0.8.0
Usage Guide
This is a Python class named PropensityScoreMatch. It is designed to perform propensity score matching, a technique used to balance the distribution of confounding variables between treatment and control groups in observational studies. The class has four input arguments:
- df: a pandas DataFrame containing the data to be analyzed.
- features: a list of column names in df that contain the variables used to calculate propensity scores.
- treatment: a string that specifies the name of the column in df that contains the treatment variable.
- outcome: a string that specifies the name of the column in df that contains the outcome variable.
The output of the class is two pandas DataFrames:
- df_matched: a DataFrame containing the data for the matched pairs of treated and control observations.
- df_TE: a DataFrame containing the treatment effect estimates for each variable in features.
In addition to these output DataFrames, the class provides two methods for visualizing the results of the analysis:
- plot_smd(): a method that generates a plot of standardized mean differences (SMDs) between the treatment and control groups for each variable in features.
- plot_individual_treatment(): a method that generates a plot of the individual treatment effects for each observation in df_matched.
For Analysis:
- plot_smd() : plotting the df_smd
Example Usage
Importing libraries
from causalinference_aagm.matching import PropensityScoreMatch as psm
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
plt.style.use('seaborn')
Initiating model
# Importing Data
df = pd.read_csv('datasets/healtcare_stroke_data.csv')
def one_hot_encode(df):
"""
One-hot encodes all object data type columns of a Pandas DataFrame.
"""
# Get the object columns
obj_cols = df.select_dtypes(include=['object']).columns
# One-hot encode the object columns
df = pd.get_dummies(df, columns=obj_cols)
return df
df = one_hot_encode(df).fillna(0)
df.head()
df_model = df[['age','hypertension','heart_disease','bmi','stroke','gender_Male','smoking_status_smokes', 'avg_glucose_level']]
df_model.head()
# Defining Variable
features = ['age','hypertension','heart_disease','bmi','gender_Male', 'avg_glucose_level']
treatment = 'smoking_status_smokes'
outcome = 'stroke'
# Matching
model = psm(df_model, features, treatment, outcome)
Output:
Evaluating Plot
def hist_all_features(df, features, hue):
width = 6*len(features)
fig, axes = plt.subplots(ncols=len(features), figsize=(width, 5))
for i in range(len(features)):
sns.histplot(data=df, x=features[i], ax=axes[i], hue=hue)
plt.show()
features = ['age','hypertension','heart_disease','bmi','gender_Male','avg_glucose_level','proba']
hist_all_features(model.df, features, hue='smoking_status_smokes')
Output:
hist_all_features(model.df_matched, features, hue='smoking_status_smokes')
fig, axes = plt.subplots(ncols=2, figsize=(12, 5))
# Comparing Stroke Mean without Matching
stroke_by_treatment = model.df.groupby(treatment)[[outcome]].mean()
stroke_by_treatment.plot(kind='bar', ax=axes[0], title='Before Matching')
# Comparing Stroke Mean After Matching
stroke_by_treatment = model.df_matched.groupby(treatment)[[outcome]].mean()
stroke_by_treatment.plot(kind='bar', ax=axes[1], title='After Matching')
plt.show()
Further Analysis
Rather than direct comparison between matched test variant and control, you better try use Average Treatment Effect for deeper anaylysis. Here, medium article that I recommend ATE Causal Inference
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file causalinference_azkaram-1.0.0.tar.gz.
File metadata
- Download URL: causalinference_azkaram-1.0.0.tar.gz
- Upload date:
- Size: 21.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
97691dbb679609f9ce4de3b04376222f2155f6df08db2ab0f3c8dcb152fbdf57
|
|
| MD5 |
87db2ffddbd0366e0cea76b5137cf8c2
|
|
| BLAKE2b-256 |
5266711ec55e2a5c1683f6d4e9b69ac306a3f7466c7166d8b2cc05615c09b676
|
File details
Details for the file causalinference_azkaram-1.0.0-py3-none-any.whl.
File metadata
- Download URL: causalinference_azkaram-1.0.0-py3-none-any.whl
- Upload date:
- Size: 23.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6216c22d3388471b996fe6df6a151f42cb36a1376ca5ab14a5c221bf213c6250
|
|
| MD5 |
ee59b871db6e087c0340fd40fe7bf4a5
|
|
| BLAKE2b-256 |
9b735deafb0b272c334d6d8dc6332e32c25f91d8382602c72f3b7d2afd71184a
|