The hardware and bandwidth for this mirror is donated by METANET, the Webhosting and Full Service-Cloud Provider.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]metanet.ch.

True Estimation of ATE

Introduction

This vignette demonstrates the usage of the True_Estimation function in the ATE.ERROR package. The True_Estimation function provides a method for estimating the Average Treatment Effect (ATE) using the generated values for X and Y.

Generating Simulated Data

First, we generate our simulated data using the data(Simulated_data) syntax.

library(ATE.ERROR)
set.seed(1)
data(Simulated_data)
Y <- Simulated_data$Y
A <- Simulated_data$T
Z <- Simulated_data$Z
X <- Simulated_data$X

True Estimation of ATE

Now we use the True_Estimation function.

True_ATE <- True_Estimation(Y, A, Z, X)
print(True_ATE)
#> [1] 0.161842

The True_Estimation function calculates the ATE by considering the true values of X and Y and adjusting for the misclassification probabilities.

These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.