Nothing
#' XGBoostSub_con: Function for Training XGBoost Model with Customized Loss Function for continuous outcomes
#'
#' This function trains an XGBoost model using a customized loss function based on the A-learning and weight-learning.
#'
#' @title XGBoost Model with Modified Loss Function for Subgroup Identification with Continuous Outcomes
#' @description Function for training XGBoost model with customized loss function for continuous outcomes
#' @param X_data The input features matrix.
#' @param y_data The input y matrix.
#' @param trt The treatment indicator vector. Should take values of 1 or -1, where 1 represents the treatment group and -1 represents the control group.
#' @param pi The propensity scores vector, which should range from 0 to 1, representing the probability of assignment to treatment.
#' @param Loss_type Type of loss function to use: "A_learning" or "Weight_learning".
#' @param params A list of additional parameters for the xgb.train function.
#' @param nrounds Number of boosting rounds. Default is 50.
#' @param disable_default_eval_metric If 1, default evaluation metric will be disabled.
#' @param verbose Logical. If TRUE, training progress will be printed; if FALSE, no progress will be printed.
#' @return Trained XGBoostSub_con model.
#' @details
#' This function requires the 'xgboost' library. Make sure to install and load the 'xgboost' library before using this function.
#'
#' After running this function, the returned model can be used like a regular xgboost model.
#' @import xgboost
#' @export
#' @examples
#' X_data <- matrix(rnorm(100 * 10), ncol = 10) # 100 samples with 10 features
#' y_data <- rnorm(100) # continuous outcome variable
#' trt <- sample(c(1, -1), 100, replace = TRUE) # treatment indicator (1 or -1)
#' pi <- runif(100, min = 0.3, max = 0.7) # propensity scores between 0 and 1
#'
#' # Define XGBoost parameters
#' params <- list(
#' max_depth = 3,
#' eta = 0.1,
#' subsample = 0.8,
#' colsample_bytree = 0.8
#' )
#'
#' # Train the model using A-learning loss
#' model_A <- XGBoostSub_con(
#' X_data = X_data,
#' y_data = y_data,
#' trt = trt,
#' pi = pi,
#' Loss_type = "A_learning",
#' params = params,
#' nrounds = 5,
#' disable_default_eval_metric = 1,
#' verbose = TRUE
#' )
#'
#' # Train the model using Weight-learning loss
#' model_W <- XGBoostSub_con(
#' X_data = X_data,
#' y_data = y_data,
#' trt = trt,
#' pi = pi,
#' Loss_type = "Weight_learning",
#' params = params,
#' nrounds = 5,
#' disable_default_eval_metric = 1,
#' verbose = TRUE
#' )
#'
XGBoostSub_con <- function(X_data, y_data, trt, pi, Loss_type = "A_learning", params = list(), nrounds = 50, disable_default_eval_metric = 1, verbose = TRUE) {
if (Loss_type == "A_learning") {
squared_log_continues <- function(X_trt, pi_trt) {
function(preds, dmatrix) {
c <- (X_trt + 1.0) / 2.0 - pi_trt
grad <- -2.0 * c * (getinfo(dtrain, "label") - preds * c)
hess <- 2.0 * (c^2)
return(list(grad = grad, hess = hess))
}
}
rmsle_continues <- function(X_trt, pi_trt) {
function(preds, dmatrix) {
c <- (X_trt + 1.0) / 2.0 - pi_trt
elements <- (getinfo(dmatrix, "label") - c * preds)^2
loss <- sqrt(sum(elements) / length(getinfo(dmatrix, "label")))
return(list(metric="A_loss",value=loss))
}
}
}
if (Loss_type == "Weight_learning") {
squared_log_continues <- function(X_trt, pi_trt) {
function(preds, dmatrix) {
c <- (1.0 - X_trt) / 2.0 + pi_trt * X_trt
grad <- (-2.0 * X_trt )/ c * (getinfo(dtrain, "label") - preds * X_trt)
hess <- ( 2.0 * (X_trt^2) ) /c
return(list(grad = grad, hess = hess))
}
}
rmsle_continues <- function(X_trt, pi_trt) {
function(preds, dmatrix) {
c <- (1.0 - X_trt) / 2.0 + pi_trt * X_trt
elements <- ( (getinfo(dmatrix, "label") - X_trt * preds)^2 ) /c
loss <- sqrt(sum(elements) / length(getinfo(dmatrix, "label")))
return(list(metric="Weight_loss",value=loss))
}
}
}
# Create training matrix
dtrain <- xgb.DMatrix(data = as.matrix(X_data), label = y_data)
# Set additional parameters for training
X_train_trt <- trt
pi_train <- pi
# Define objective and evaluation metric
objective <- squared_log_continues(X_train_trt, pi_train)
eval_metric <- rmsle_continues(X_train_trt, pi_train)
# Merge parameters
all_params <- c(list(objective = objective), params)
# Train the model
model <- xgb.train(data = dtrain,
params = all_params,
watchlist = list(train = dtrain),
nrounds = nrounds, verbose = verbose,
disable_default_eval_metric = disable_default_eval_metric,
eval_metric = eval_metric)
# Print a message indicating that the model training has finished
if (verbose) {
cat("XGBoost model training finished.\n")
}
return(model)
}
#' eval_metric: Function for Evaluating XGBoostSub_con Model Performance
#'
#' This function evaluates the performance of an XGBoostSub_con model using a A-learning or weight-learning function.
#'
#' @title Evaluation Metrics for XGBoostSub_con Model
#' @description Function for evaluating XGBoostSub_con model performance.
#' @param model The trained XGBoostSub_con model object.
#' @param X_feature The input features matrix.
#' @param y_label The input y matrix.
#' @param trt The treatment indicator vector. Should take values of 1 or -1, where 1 represents the treatment group and -1 represents the control group.
#' @param pi The propensity scores vector, which should range from 0 to 1, representing the probability of assignment to treatment.
#' @param Loss_type Type of loss function to use: "A_learning" or "Weight_learning".
#' @return Evaluation result of the XGBoostSub_con model.
#' @import xgboost
#' @export
eval_metric_con <- function(model, X_feature, y_label, pi, trt, Loss_type = "A_learning") {
if (Loss_type == "A_learning") {
A_learning_metric_con <- function(X_trt, pi_trt){
function(preds, dmatrix) {
c <- (X_trt + 1.0) / 2.0 - pi_trt
elements <- (getinfo(dmatrix, "label") - c * preds)^2
loss <- sqrt(sum(elements) / length(getinfo(dmatrix, "label")))
return(list(metric="A_loss",value=loss))
}
}
X_train_trt <- trt
dtest <- xgb.DMatrix(data = as.matrix(X_feature), label = y_label)
eval_metric_test <- A_learning_metric_con(X_train_trt, pi)
eval_result_test <- eval_metric_test(stats::predict(model, dtest), dtest)
} else if (Loss_type == "Weight_learning") {
Weight_learning_metric_con <- function(X_trt, pi_trt) {
function(preds, dmatrix) {
c <- (1.0 - X_trt) / 2.0 + pi_trt * X_trt
elements <- ((getinfo(dmatrix, "label") - X_trt * preds)^2) / c
loss <- sqrt(sum(elements) / length(getinfo(dmatrix, "label")))
return(list(metric = "Weight_loss", value = loss))
}
}
X_train_trt <- trt
dtest <- xgb.DMatrix(data = as.matrix(X_feature), label = y_label)
eval_metric_test <- Weight_learning_metric_con(X_train_trt, pi)
eval_result_test <- eval_metric_test(stats::predict(model, dtest), dtest)
}
return(eval_result_test)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.