R/Unidiff2.R

#' ###########################################################################
#' ###
#' ### 		Subject:	R-script zur Pforr und Dannwolf Funktion
#' ### 		Date: 		May 2023
#' ### 		Author: 	Bjoern Rohr
#' ### 	Version:  	1.00
#' ###
#' ### 		Bugfix:   	/
#' ###
#' ###########################################################################
#' 
#' 
#' #################################
#' ### The function for the Plot ###
#' #################################
#' 
#' ### Documentation of the diff_plotter_function ###
#' 
# #' Compare data frames and Plot Differences
# #'
# #' Returns a plot or data showing the difference of two or more
# #' data frames The differences are calculated on the base of
# #' differing metrics, chosen in the funct argument. All used data frames must
# #' contain at least one column named equal in all data frames, that has equal
# #' values. It works similar as \link[sampcompR]{uni_compare}, however it's bootstrap technique
# #' is based on the \link[survey]{svydesign} package, making it more suitable for the comparison of weighted data.
# #'
# #' @param dfs A character vector containing the names of data frames to compare against the benchmarks. 
# #' @param benchmarks A character vector containing the names of benchmarks to compare the data frames against.
# #' The vector must either to be the same length as \code{dfs}, or length 1. If it has length 1 every
# #' df will be compared against the same benchmark. Benchmarks can either be the name of data frames or 
# #' the name of a list of tables. The tables in the list need to be named as the respective variables
# #' in the data frame of comparison.
# #' @param variables A character vector containing the names of the variables for the comparison. If NULL,
# #' all variables named similar in both the dfs and the benchmarks will be compared. Variables missing
# #' in one of the data frames or the benchmarks will be neglected for this comparison.
# #' @param nboots  The Number of bootstraps used to calculate standard errors. Must either be >2 or 0.
# #' If >2 bootstrapping is used to calculate standard errors with \code{nboots} iterations. If 0, SE
# #' is calculated analytically. We do not recommend using \code{nboots} =0 because this method is not
# #' yet suitable for every \code{funct} used and every method. Depending on the size of the data and the
# #' number of bootstraps, \code{uni_compare2} can take a while.
# #' @param funct A function or a vector of functions to calculate the difference between the
# #' data frames. If a single input is given, the same function will be used for all variables.
# #' If the input is a vector, the vector has to be of the same length as \code{variables}. 
# #' Then for each variable the indicated function will be used. The input can either be a 
# #' character indicating a predefined function, or function (not yet clearly defined). 
# #' Predefined functions are:
# #' 
# #' * \code{"d_mean"}, \code{"ad_mean"} A function to calculate the (absolute) difference in mean of
# #' the variables in dfs and benchmarks with the same name. Only applicable for
# #' metric variables
# #'
# #' * \code{"d_prop"}, \code{"ad_prop"} A function to calculate the (absolute) difference in proportions of
# #' the variables in dfs and benchmarks with the same name. Only applicable for dummy
# #' variables.
# #'
# #' * \code{"rel_mean"}, \code{"abs_rel_mean"} A function to calculate the (absolute) 
# #' relative difference in mean of the variables in dfs and benchmarks with the same name.
# #' For more information on the formula for difference and analytic variance, see Felderer 
# #' et al. (2019). Only applicable for metric variables
# #'
# #' * \code{"rel_prop"}, \code{"abs_rel_prop"} A function to calculate the (absolute) 
# #' relative difference in proportions of the variables in dfs and benchmarks with 
# #' the same name. it is calculated similar to the relative difference in mean 
# #' (see Felderer et al., 2019), however the default label for the plot is different. 
# #' Only applicable for dummy variables.
# #'
# #' * \code{"ad_median"} A function to calculate the (absolute) relative difference in median of
# #' the variables in dfs and benchmarks with the same name.
# #'
# #'
# #' @param data If TRUE, a uni_compare_object is returned, containing results of the comparison.
# #' @param legendlabels A character string or vector of strings containing a label for the
# #' legend.
# #' @param legendtitle A character string containing the title of the Legend.
# #' @param colors A vector of colors used in the plot for the
# #' different comparisons.
# #' @param shapes A vector of shapes applicable in [ggplot2::ggplot2()] used in the plot for
# #' the different comparisons.
# #' @param summetric If ,\code{"avg"}, \code{"mse1"}, \code{"rmse1"}, or \code{"R"} 
# #' the respective measure is calculated for the biases of each survey. The values 
# #' \code{"mse1"} and \code{"rmse2"} lead to similar results as in \code{"mse1"} and \code{"rmse1"}, 
# #' with slightly different visualization in the plot. If summetric = NULL, no summetric 
# #' will be displayed in the Plot. When \code{"R"} is chosen, also \code{response_identificator} 
# #' is needed.
# #' @param label_x,label_y A character string or vector of character strings containing a label for
# #' the x-axis and y-axis.
# #' @param plot_title A character string containing the title of the plot.
# #' @param varlabels A character string or vector of character strings containing the new names of
# #' variables, also used in plot.
# #' @param name_dfs,name_benchmarks A character string or vector of character strings containing the
# #' new names of the data frames and benchmarks, also used in plot.
# #' @param summet_size A number to determine the size of the displayed summetric in the plot.
# #' @param ci_type A character string determining the type of bootstrap ci available in the
# #' \code{\link[boot]{boot.ci}} function of the code{boot} package.
# #' @param silence If silence = F a warning will be displayed, if variables are excluded from either
# #' data frame or benchmark, for not existing in both.
# #' @param conf_level A numeric value between zero and one to determine the confidence level of the confidence
# #' interval.
# #' @param conf_adjustment If conf_adjustment=T the confidence level of the confidence interval will be
# #' adjusted with a Bonferroni adjustment, to account for the problem of multiple comparisons.
# #' @param weight,weight_bench A character vector determining variables to weight the \code{dfs} or
# #' \code{benchmarks}. They have to be part of the respective data frame. If only one character is provided,
# #' the same variable is used to weight every df or benchmark. If a weight variable is provided also an id
# #' variable is needed.For weighting, the \code{survey} package is used.
# #' @param id,id_bench A character vector determining id variables used to weight the \code{dfs} or
# #' \code{benchmarks} with the help of the \code{survey} package. They have to be part of the respective
# #' data frame. If only one character is provided, the same variable is used to weight every df or benchmark.
# #' @param strata,strata_bench A character vector determining strata variables used to weight
# #' the \code{dfs} or \code{benchmarks} with the help of the \code{survey} package. They have
# #' to be part of the respective data frame. If only one character is provided, the same variable
# #' is used to weight every df or benchmark.
# #' @param R_variables A character vector with the names of variables that should be used in the model 
#' # #' to calculate the R indicator
# #' @param type Define the type of comparison. Can either be "comparison" or "nonrespnse".
# #' @param ndigits The number of digits for rounding in plot.
# #' 
# #' @return A plot based on [ggplot2::ggplot2()] (or data frame if data==TRUE)
# #' which shows the difference between two or more data frames on predetermined variables,
# #' named identical in both data frames.
# #' 
# #' @references 
# #' Felderer, B., Kirchner, A., & Kreuter, F. (2019). The Effect of Survey Mode on Data 
# #' Quality: Disentangling Nonresponse and Measurement Error Bias. Journal of Official 
# #' Statistics, 35(1), 93–115. https://doi.org/10.2478/jos-2019-0005
# #' 
# #' @export
# #' @importFrom magrittr %>%
# #' @importFrom boot boot
# #' @examples
# #' 
# #' ## Get Data for comparison
# #' card<-wooldridge::card
# #' 
# #' black<-wooldridge::card[wooldridge::card$black==1,]
# #' north<-wooldridge::card[wooldridge::card$south==0,]
# #' white<-wooldridge::card[wooldridge::card$black==0,]
# #' south<-wooldridge::card[wooldridge::card$south==1,]
# #' 
# #' ## use the function to plot the data 
# #' univar_comp<-sampcompR::uni_compare2(dfs = c("north","white"),
# #'                                     benchmarks = c("south","black"),
# #'                                     variables= c("age","educ","fatheduc","motheduc","wage","IQ"),
# #'                                     funct = "abs_rel_mean",
# #'                                     nboots=200,
# #'                                     summetric="rmse2",
# #'                                     data=FALSE)
# #'
# #'  univar_comp
# #'  
#' 
#' ### The diff_plotter_function
#' uni_compare2 <- function(dfs, benchmarks, variables=NULL, nboots = 2000, funct = "rel_mean",
#'                         data = FALSE, type="comparison",legendlabels = NULL, legendtitle = NULL, colors = NULL, shapes = NULL,
#'                         summetric = "rmse2", label_x = NULL, label_y = NULL, plot_title = NULL, varlabels = NULL,
#'                         name_dfs=NULL, name_benchmarks=NULL,
#'                         summet_size=4, ci_type="perc", silence=T, conf_level=0.95, conf_adjustment=NULL,
#'                         weight =NULL, id=NULL, strata=NULL, weight_bench=NULL,id_bench=NULL, strata_bench=NULL,
#'                         ndigits=3) {
#' 
#'   ##################################
#'   ### Errors if inputs are wrong ###
#'   ##################################
#' 
#'   ### Not enough Data frames ###
#'   if (is.null(dfs) | is.null(benchmarks)) stop("no data for compairson provided")
#' 
#' 
#'   ### benchmarks is longer than 1 but shorter than dfs ###
#'   if (length(benchmarks)>1 & length(benchmarks)!=length(dfs)) stop("benchmarks must either be length 1 or the same length as dfs")
#' 
#'   ### Inputs are not a Data frame ###
#'   for (i in 1:length(dfs)){
#' 
#'     if (is.data.frame(get(dfs[i])) == FALSE) stop(paste(dfs[i],"must be a character naming a data frame",
#'                                                         sep = "", collapse = NULL))
#'     
#'     ### check if benchmarks have similar variables ###
#'     if (length(benchmarks)==length(dfs)){
#'         if ((any(names(get(dfs[i])) %in% names(get(benchmarks[i]))))==F) stop(dfs[i], " has no common variable with ", benchmarks[i],".")}
#'     if ((length(benchmarks)==length(dfs))==F){
#'         if ((any(names(get(dfs[i])) %in% names(get(benchmarks[1])))==F)) stop(dfs[i], " has no common variable with ",benchmarks[1],".")}
#'   }
#' 
#'   for (i in 1:length(benchmarks)){
#' 
#'     if (inherits(get(benchmarks[i]),"data.frame") == FALSE &
#'         inherits(get(benchmarks[i]),"list")==FALSE) stop(paste(benchmarks[i], " must be a data frame or a list",
#'                                                         sep = "", collapse = NULL))
#'     if (inherits(get(benchmarks[i]),"list") & 
#'         is.null(weight_bench)==F) stop(paste(benchmarks[i]), " if benchmark is a list of tables, weighting needs to be permored, when generating the list.")
#'   }
#' 
#'   ### Check if funct is either a function, character, vector of functions or vector of characters.
#'   if(length(funct)==1){
#'     if (is.function(funct)==F){
#'       if ((funct%in% c("d_mean","ad_mean","d_prop","ad_prop","prop_modecat","abs_prop_modecat",
#'                       "avg_prop_diff","avg_abs_prop_diff","rel_mean","rel_prop","ad_median",
#'                       "ad_mode","abs_rel_mean","abs_rel_prop"))==F) {
#'         stop("funct must either be a function applicable as statistic in the boot package, or
#'              a character vector indicating one of the predefined functions.")
#'       }
#'      }
#'     }
#' 
#'     if(length(funct)>1){
#'       if(is.null(variables)) stop("if funct>1, funct has to be of the same length as variables.")
#'       if(length(funct)!= length(variables)) stop("if funct>1, funct has to be of the same length as variables.")
#'       for (i in 1:length(funct)) {
#'         if (is.function(funct)==F){
#'           if ((funct%in% c("d_mean","ad_mean","d_prop","ad_prop","prop_modecat","abs_prop_modecat",
#'                            "avg_prop_diff","avg_abs_prop_diff","rel_mean","rel_prop","ad_median",
#'                            "ad_mode","abs_rel_mean","abs_rel_prop"))==F) {
#'             stop("funct must either be a function applicable as statistic in the boot package, or
#'              a character vector indicating one of the predefined functions.")
#'           }
#'         }
#'       }
#'     }
#' 
#' 
#' 
#'   ### Check if characterinputs are characters ###
#' 
#'   if (is.null(label_x) == FALSE) {
#'     if (is.character(label_x) == FALSE) stop("label_x must be a character.")
#'   }
#'   if (is.null(label_y) == FALSE) {
#'     if (is.character(label_y) == FALSE) stop("label_y must be a character.")
#'   }
#'   if (is.null(varlabels) == FALSE) {
#'     if (is.character(varlabels) == FALSE) stop("varlabels must be a character.")
#'   }
#'   if (is.null(plot_title) == FALSE) {
#'     if (is.character(plot_title) == FALSE) stop("plot_title must be a character.")
#'   }
#'   if (is.null(colors) == FALSE) {
#'     if (is.character(colors) == FALSE) stop("colors must be a character.")
#'   }
#'   if (is.null(legendlabels) == FALSE) {
#'     if (is.character(legendlabels) == FALSE) stop("legendlabels must be a character.")
#'   }
#'   if (is.null(legendtitle) == FALSE) {
#'     if (is.character(legendtitle) == FALSE) stop("legendtitle must be a character.")
#'   }
#'   if (is.null(name_dfs) == FALSE) {
#'     if (is.character(name_dfs) == FALSE) stop("name_dfs must be a character.")
#'   }
#'   if (is.null(name_benchmarks ) == FALSE) {
#'     if (is.character(name_benchmarks ) == FALSE) stop("name_benchmarks must be a character.")
#'   }
#'   if (is.null(summet_size) == FALSE) {
#'     if (is.numeric(summet_size) == FALSE) stop("summet_size must be a number that is >0.")
#'   }
#' 
#'   ### check for ci-type ###
#'   if((ci_type %in% c("perc","norm"))==F) stop('ci_type must either be "perc" or "norm".')
#' 
#'   ### Check if data frame is logical
#'   if (is.logical(data) == FALSE) stop("data must be of type logical")
#'   if (is.logical(silence) == FALSE) stop("silence must be of type logical")
#' 
#'   ### Check if data frame is logical
#'   if (is.numeric(nboots) == FALSE) stop("nboots must be of type numeric")
#'   if (nboots < 0 | nboots == 1) stop("nboots must be 0(for standard SE) or >1 for bootstrap SE")
#' 
#'   ### Check is summetric is right ###
#'   if (is.null(summetric)== FALSE) {
#'     if(summetric!= "rmse1" & summetric!= "rmse2" &
#'       summetric!= "mse1" & summetric!= "mse2" &
#'       summetric!="avg" & summetric!="avg2" &
#'       summetric!="R") stop("summetric must be either avg,avg2, rmse1, rmse2, mse1, mse2 or R")}
#' 
#'   ### confidence level out of bound ###
#'   if (conf_level>1 | conf_level<0) stop("conf_level must be <1 and >0")
#' 
#' 
#'   ### check for weight var ###
#'   if(is.null(weight)==F) if(is.null(id)) stop("if a weight var is provided for the data frame also a id is needed")
#'   if(is.null(weight_bench)==F) if(is.null(id_bench)) stop("if a weight var is provided for the benchmark also id_bench is needed")
#' 
#' 
#'   
#'   response_identificator<-NULL
#'   R_variables<-NULL 
#'   
#'   ##############################
#'   ### Get Benchmarks and DFS ###
#'   ##############################
#' 
#' 
#'   ### get benchmark if only one benchmark is provided ###
#'   if(length(benchmarks)==1) benchmarks<-c(rep(benchmarks,length(dfs)))
#' 
#'   ### Get Names of data frameS ###
#' 
#'   if (is.null(name_dfs)==F) names<-name_dfs else names=NULL
#'   name_dfs<-dfs
#'   if (is.null(names)==F) name_dfs[1:(length(names))] <- names
#' 
#' 
#' 
#' 
#'   if (is.null(name_benchmarks)==F) names<-name_benchmarks else names=NULL
#'   name_benchmarks<-benchmarks
#' 
#'   if (is.null(names)==F) name_benchmarks[1:(length(names))] <- names
#' 
#' 
#' 
#'   ##########################
#'   ### save dfs in a list ###
#'   ##########################
#' 
#'   df_list<-list()
#'   
#'   for (i in 1:length(dfs)){
#'     df_list[[i]]<-get(dfs[i])
#'     
#'   }
#' 
#' 
#'   ### prepare weights ###
#'   
#'   if(is.null(id)==F) if(length(id)>=1 & length(id)<length(dfs)) id<-rep(id,length(dfs))
#'   if(is.null(weight)==F) if(length(weight)>=1 & length(weight)<length(dfs)) weight<-rep(weight,length(dfs))
#'   if(is.null(strata)==F) if(length(strata)>=1 & length(strata)<length(dfs)) strata<-rep(strata,length(dfs))
#'   
#'   if(is.null(id_bench)==F) if(length(id_bench)>=1 & length(id_bench)<length(dfs)) id_bench<-rep(id_bench,length(dfs))
#'   if(is.null(weight_bench)==F) if(length(weight_bench)>=1 & length(weight_bench)<length(dfs)) weight_bench<-rep(weight_bench,length(dfs))
#'   if(is.null(strata_bench)==F) if(length(strata_bench)>=1 & length(strata_bench)<length(dfs)) strata_bench<-rep(strata_bench,length(dfs))
#'   
#'   
#'   #################################
#'   ### save benchmarks in a list ###
#'   #################################
#' 
#'   bench_list<-list()
#'   for (i in 1:length(benchmarks)){
#'     bench_list[[i]]<-get(benchmarks[i])
#'     
#'   }
#' 
#'  
#'   ###################################
#'   ### equalize data to benchmarks ###
#'   ###################################
#' 
#'     ### Equalize Data to Benchmark
#' 
#'   for (i in 1:length(dfs)){
#'    df_list[[i]]<- dataequalizer(target_df= bench_list[[i]] ,source_df = df_list[[i]],
#'                                 variables = variables, silence = silence)
#' 
#' 
#'    bench_list[[i]]<- dataequalizer(target_df = df_list[[i]], source_df = bench_list[[i]],
#'                                    variables = variables, silence = silence)
#'    
#'    if(is.null(weight)==F){
#'      if (is.na(weight[i])==F) df_list[[i]][,weight[i]]<-get(dfs[i])[,weight[i]]
#'    }
#'    if(is.null(id)==F){
#'      if (is.na(id[i])==F) df_list[[i]][,id[i]]<-get(dfs[i])[,id[i]]
#'    }
#'    if(is.null(strata)==F){
#'      if (is.na(strata[i])==F) df_list[[i]][,strata[i]]<-get(dfs[i])[,strata[i]]
#'    }
#'    
#'    
#'    if(is.null(id_bench)==F){
#'      if (is.na(id_bench[i])==F) bench_list[[i]][,id_bench[i]]<-get(benchmarks[i])[,id_bench[i]]
#'    }
#'    if(is.null(weight_bench)==F){
#'      if (is.na(weight_bench[i])==F) bench_list[[i]][,weight_bench[i]]<-get(benchmarks[i])[,weight_bench[i]]
#'    }
#'    if(is.null(strata_bench)==F){
#'      if (is.na(strata_bench[i])==F) bench_list[[i]][,strata_bench[i]]<-get(benchmarks[i])[,strata_bench[i]]
#'    }
#'    
#'    
#'   }
#' 
#'   #####################################################
#'   ### Get  Functions for every variable in data frames ###
#'   #####################################################
#' 
#'   #############################
#'   ### Choosing the Function ###
#'   #############################
#' 
#'   ### get func_name
#'   if (is.character(funct)){
#'     if (length(funct)==1) func_name<-funct
#'     else func_name<-"Difference"}
#' 
#'   func<-NA
#'   if (is.character(funct)){
#'       for (i in 1:length(funct)) {
#'         if (funct[i] == "rel_mean") func[i] <- "REL_MEAN"
#'         if (funct[i] == "rel_prop") func[i] <- "REL_MEAN"
#'         if (funct[i] == "abs_rel_mean") func[i] <- "ABS_REL_MEAN"
#'         if (funct[i] == "abs_rel_prop") func[i] <- "ABS_REL_MEAN"
#'         if (funct[i] == "ad_mean") func[i] <- "ABS_PROP_DIFF"
#'         if (funct[i] == "d_mean") func[i] <- "PROP_DIFF"
#'         if (funct[i] == "ad_median") func[i] <- "AD_MED"
#'         if (funct[i] == "ad_mode") func[i] <- "AD_MODE"
#'         if (funct[i] == "ks") func[i] <- "KS"
#'         if (funct[i] == "prop_modecat") func[i] <- "PERC_MODECOUNT"
#'         if (funct[i] == "abs_prop_modecat") func[i] <- "ABS_PERC_MODECOUNT"
#'         if (funct[i] == "d_prop") func[i]<- "PROP_DIFF"
#'         if (funct[i] == "ad_prop") func[i]<- "ABS_PROP_DIFF"
#'         if (funct[i] == "avg_prop_diff") func[i] <- "MEAN_PERC_DIST"
#'         if (funct[i] == "avg_abs_prop_diff") func[i] <- "Mean_ABS_PERC_DIST"
#'         
#'       }}
#' 
#' 
#'   #######################
#'   ### calculate alpha ###
#'   #######################
#'   
#'   alpha<-1-conf_level
#' 
#'   #########################
#'   ### Calculate Results ###
#'   #########################
#' 
#' 
#'   for (i in 1:length(dfs)){
#' 
#'     if (ncol(df_list[[i]])>0) {
#'     if (i==1) {
#'     results<-subfunc_diffplotter2(x = df_list[[i]], y = bench_list[[i]],
#'                                   samp = i, nboots = nboots, func = funct[1],
#'                                   func_name = func_name, ci_type=ci_type, alpha=alpha, conf_adjustment=conf_adjustment,
#'                                   ids=id[i], weights = weight[i], strata = strata[i],
#'                                   ids_bench = id_bench[i], weights_bench = weight_bench[i],
#'                                   strata_bench = strata_bench[i])
#'     
#'     } 
#' 
#' 
#'     if (i!=1){
#'       
#'     results<- rbind(results,subfunc_diffplotter2(x = df_list[[i]], y = bench_list[[i]],
#'                                                 samp = i, nboots = nboots, func = funct[1],
#'                                                 func_name = func_name, ci_type=ci_type, alpha=alpha, conf_adjustment=conf_adjustment,
#'                                                 ids=id[i], weights = weight[i],strata = strata[i],
#'                                                 ids_bench = id_bench[i], weights_bench = weight_bench[i],
#'                                                 strata_bench = strata_bench[i]))
#'     
#'     }}
#' 
#'     if (ncol(df_list[[i]])==0) stop(paste(name_dfs[i],"does not share a common variable with the benchmark or the variables parameter"),
#'                                        sep =" ")
#'   }
#' 
#'   ############################
#'   ### Add df_names to Data ###
#'   ############################
#' 
#'   for (i in 1:length(name_dfs)){
#'   results$name_dfs[results$sample==i]<-name_dfs[i]
#'   }
#' 
#'   for (i in 1:length(name_benchmarks)){
#'     results$name_benchmarks[results$sample==i]<-name_benchmarks[i]
#'   }
#' 
#' 
#'   ################################
#'   ### Add function names to df ###
#'   ################################
#' 
#'   if (length(funct)>1 ){
#' 
#'   for (i in 1:length(dfs)){
#'     for (j in 1:nrow(results[results$sample])){
#'       results$funct[results$sample==i][j]<-funct[j]
#'     }}}
#' 
#'   if(length(funct)==1) results$funct<-funct
#' 
#'   ############################################################################################
#'   ### Calculate a SumMETRIC to DATA, that Makes the whole data frame compairable with another ###
#'   ### RMSE & MSE                                                                           ###
#'   ############################################################################################
#' 
#'   results$mse<-NA
#'   results$rmse<-NA
#' 
#'   for (i in 1:length(dfs)){
#' 
#'     bias<-results$t_vec[results$sample==i]
#' 
#'     results$mse[results$sample==i]<-sum(bias*bias)/length(bias)
#'     results$rmse[results$sample==i]<-sqrt(sum(bias*bias)/length(bias))
#'     results$avg[results$sample==i]<-sum(abs(bias))/length(bias)
#'   }
#'   
#' 
#'   
#'   #############################
#'   ### Calculate R indicator ###
#'   #############################
#'   
#'   ### get R_vars ###
#'   
#'   if(is.null(R_variables)) R_variables<-colnames(df_list[[i]])
#'   
#'   
#'   for (i in 1:length(dfs)){
#'   if (is.null(response_identificator)==F){if(is.na(response_identificator[i])==F) 
#'     
#'     R_indicator<-R_indicator_func(get(dfs[i]),response_identificator=response_identificator,
#'                                   variables=R_variables,
#'                                   weight = weight[i],id=id[i],strata=strata[i])
#'   }
#'   if(is.null(response_identificator)) R_indicator<-NA
#'   if(is.null(response_identificator)==F) {if(is.na(response_identificator[i])==F) R_indicator<-NA}
#' 
#'     
#'     results$R_indicator[results$sample==i]<-R_indicator
#'     
#'   }
#' 
#'    ############################################################################
#'    ### add results and everything else together to create an results object ###
#'    ############################################################################
#' 
#'   results<-final_data2(data = results, name_dfs=name_dfs, name_benchmarks=name_benchmarks, summetric=summetric, colors=colors,
#'                       shapes=shapes, legendlabels=legendlabels, legendtitle=legendtitle , label_x=label_x, label_y=label_y,
#'                       summet_size=summet_size, plot_title=plot_title, funct=funct,type = type, variables = variables,
#'                       varlabels=varlabels,ndigits=ndigits)
#' 
#'   if (isTRUE(data)) return(results)
#' 
#'   #####################
#'   ### Edit varnames ###
#'   #####################
#'   if (is.null(varlabels)) varlabels<-unique(results$data$varnames)
#'   if (length(varlabels) >= length(unique(results$data$varnames))){varlabels<-varlabels[1:length(unique(results$data$varnames))]}
#'   if (length(varlabels) < length(unique(results$data$varnames))) varlabels<-c(varlabels,unique(results$data$varnames)[(length(varlabels)+1):length(unique(results$data$varnames))])
#' 
#'   ################
#'   ### Plotting ###
#'   ################
#' 
#'   Plot <- ggplot2::ggplot(data = results$data, ggplot2::aes(x = results$data$t_vec, y = factor(results$data$varnames), col = factor(results$data$sample), shape = factor(results$data$sample), group = factor(results$data$sample))) +
#'     ggplot2::geom_point(position = ggplot2::position_dodge(width = 1), stat = "identity", size = 3) +
#'     {if (isTRUE(conf_adjustment)==F) ggplot2::geom_errorbar(data = results$data, ggplot2::aes( xmin = results$data$ci_lower, xmax = results$data$ci_upper, width = 0.2), position = ggplot2::position_dodge(width = 1))} +
#'     {if (isTRUE(conf_adjustment)) ggplot2::geom_errorbar(data = results$data, ggplot2::aes( xmin = results$data$ci_lower_adjusted, xmax = results$data$ci_upper_adjusted, width = 0.2), position = ggplot2::position_dodge(width = 1))} +
#'     ggplot2::scale_y_discrete(limits = rev(unique(results$data$varnames)),labels= varlabels, breaks=unique(results$data$varnames)) +
#'     ggplot2::geom_vline(xintercept = 0) +
#'     ggplot2::scale_color_manual(
#'       values = results$colors, name = results$legendtitle,
#'       labels = results$legendlabels
#'     ) + ### Handle Color and Legend
#'     ggplot2::scale_shape_manual(
#'       values = results$shapes,
#'       name = results$legendtitle, labels = results$legendlabels
#'     ) +
#'     ggplot2::xlab(results$label_x) +
#'     ggplot2::ylab(results$label_y)
#' 
#'   if (is.null(results$label_summetric) == FALSE) {
#'     Plot <- Plot + ggplot2::geom_label(ggplot2::aes(x = Inf, y = Inf, hjust = 1, vjust = 1, label = results$label_summetric),
#'                               fill = ggplot2::alpha("white", 0.02), color = ggplot2::alpha("black", 0.1), size=results$summet_size
#'     )
#'   }
#'   if (is.null(results$plot_title) == FALSE) Plot <- Plot + ggplot2::ggtitle(results$plot_title)
#' 
#'   return(Plot)
#' }
#' 
#' 
#' 
#' ################################
#' ### Subfunction to bootstrap ###
#' ################################
#' 
#' 
#' subfunc_diffplotter2 <- function(x, y, samp = 1, nboots = nboots, func = func, variables,
#'                                 func_name="none", ci_type="perc", alpha=0.05, conf_adjustment=NULL,
#'                                 ids=ids, weights=weights,strata=strata, 
#'                                 ids_bench = ids_bench,weights_bench = weights_bench,
#'                                 strata_bench = strata_bench) {
#'   
#'   
#'   ### Check if x and y are factors and edit them to make them fit for further analyses
#'   x<-unfactor(x,func[1],weights,strata,ids)
#'   y<-unfactor(y,func[1],weights_bench,strata_bench,ids_bench)
#'   
#' 
#'   ##########################################################
#'   ### loop to bootstrap for every Variable in data frame ###
#'   ##########################################################
#' 
#'   variables<-colnames(x)
#'   if(is.null(ids)==F) {if(is.na(ids)==F) variables<-variables[!variables %in% ids]}
#'   if(is.null(weights)==F) {if(is.na(weights)==F) variables<-variables[!variables %in% weights]}
#'   if(is.null(strata)==F) {if(is.na(strata)==F) variables<-variables[!variables %in% strata]}
#'   
#'   if(is.null(ids_bench)==F) {if(is.na(ids_bench)==F) variables<-variables[!variables %in% ids_bench]}
#'   if(is.null(weights_bench)==F) {if(is.na(weights_bench)==F) variables<-variables[!variables %in% weights_bench]}
#'   if(is.null(strata_bench)==F) {if(is.na(strata_bench)==F) variables<-variables[!variables %in% strata_bench]}
#'   
#'   
#'   svy_boot<-boot_svy_mean(data = x,variables = variables,nboots = nboots,
#'                           id=ids, weight = weights, strata = strata,func=func)
#'   #boot <- boot(data = as.data.frame(x), y = as.data.frame(y), statistic = get(func[1]), R = nboots, ncpus = parallel::detectCores(), parallel = "multicore")
#' 
#'   means_bench<-mean_bench_func(data = y,variables = variables,
#'                                id = ids_bench,weight = weights_bench,strata = strata_bench,func=func)
#'   
#'   ### Make data to a data frame ###
#' 
#'   alpha_adjusted<-alpha/length(x)
#'   
#'   
#'   t_vec<-measure_function(svy_boot,means_bench,func = func,out = "diff",alpha=alpha)
#'   se_vect<-measure_function(svy_boot,means_bench,func = func,out = "SE",alpha=alpha)
#'   lower_ci<-measure_function(svy_boot,means_bench,func = func,out = "lower_ci",alpha=alpha)
#'   upper_ci<-measure_function(svy_boot,means_bench,func = func,out = "upper_ci",alpha=alpha)
#'   lower_ci_adjusted<-measure_function(svy_boot,means_bench,func = func,out = "lower_ci",alpha=alpha_adjusted)
#'   upper_ci_adjusted<-measure_function(svy_boot,means_bench,func = func,out = "upper_ci",alpha=alpha_adjusted)  
#'   
#'   
#' 
#'   ########################
#'   ### weitere schritte ###
#'   ########################
#'   
#'   
#'   data <- as.data.frame(t_vec)
#'   rownames(data)<-1:nrow(data)
#'   data$se_vec <- se_vect
#'   names <- variables #rownames(data) ### to align values in plot
#'   data$varnames <- names
#'   data$ci_lower<-lower_ci
#'   data$ci_upper<-upper_ci
#'   data$ci_level<- 1-alpha
#' 
#'   if (is.null(conf_adjustment)==F){
#' 
#'     data$ci_lower_adjusted<-lower_ci_adjusted
#'     data$ci_upper_adjusted<-upper_ci_adjusted
#'     data$ci_level_adjusted<- 1-alpha_adjusted
#'   }
#' 
#'   n_df_func<-function(df,variable){
#'     
#'     length(stats::na.omit(df[,variable]))
#'     
#'   }
#'   
#'   data$n_df<-as.vector(sapply(variables,n_df_func,df=x))
#'   data$n_bench<-as.vector(sapply(variables,n_df_func,df=y))
#' 
#'   if (is.null(conf_adjustment)){
#'     names(data) <- c("t_vec", "se_vec", "varnames","ci_lower","ci_upper","ci_level","n_df","n_bench")}
#' 
#'   if (is.null(conf_adjustment)==F){
#'     names(data) <- c("t_vec", "se_vec", "varnames","ci_lower","ci_upper","ci_level", "ci_lower_adjusted",
#'                      "ci_upper_adjusted","adjusted_ci_level","n_df","n_bench")}
#' 
#' 
#'   data$se_vec <- as.numeric(data$se_vec)
#' 
#'   data$sample <- samp
#'   return(data)
#' }
#' 
#' 
#' 
#' final_data2<-function(data, name_dfs, name_benchmarks, summetric=NULL, colors=NULL,
#'                      shapes=NULL, legendlabels=NULL, legendtitle=NULL , label_x=NULL, label_y=NULL,
#'                      summet_size=NULL, plot_title=NULL,funct=NULL,type=NULL,variables=NULL,varlabels=NULL,
#'                      ndigits=3){
#' 
#' 
#'   ###########################
#'   ### save data as a list ###
#'   ###########################
#' 
#'   data_list<-list()
#' 
#' 
#'   #######################
#'   ### get a summetric ###
#'   #######################
#' 
#'   if (is.null(summetric) == F) label_summet<-
#'       calculate_summetric(data=data, summetric = summetric,
#'                           name_dfs = name_dfs, name_benchmarks = name_benchmarks,
#'                           funct = funct,ndigits=ndigits)
#' 
#'   if (is.null(summetric) == T) label_summet=NULL
#' 
#' 
#'   #####################
#'   ### Decide colors ###
#'   #####################
#' 
#'   color<-c("blue","red","purple","green","yellow", "brown","orange2", "cyan2",
#'            "springgreen3", "beige", "bisque4", "aquamarine", "chocolate",
#'            "darkmagenta", "pink", "darksalmon", "gold", "cornflowerblue", "cyan4",
#'            "deeppink")
#' 
#'   if (is.null(colors) == FALSE) {
#'     color[1:(length(colors))] <- colors
#'   }
#' 
#'   colors <- color
#' 
#'   #####################
#'   ### Decide shapes ###
#'   #####################
#' 
#'   shape<-c(16,15,17, 18,19,21,22,23,24,25,1,2,0,5,6,7,8,9,10,11,12,13,14)
#' 
#'   if (is.null(shapes) == FALSE) {
#'     shape[1:(length(shapes))] <- shapes
#'   }
#' 
#'   shapes <- shape
#' 
#'   ############################
#'   ### label Legend & title ###
#'   ############################
#' 
#'   def_leglabels<-NULL
#' 
#'   for (i in 1:length(name_dfs)){
#' 
#'     label<- paste(name_dfs[i], " vs. ", name_benchmarks[i])
#' 
#'     if (is.null(def_leglabels)==F) def_leglabels<-c(def_leglabels,label)
#'     if (is.null(def_leglabels)==T) def_leglabels<-label
#'   }
#' 
#'   if (is.null(legendlabels) == FALSE) {
#'     def_leglabels[1:(length(legendlabels))] <- legendlabels
#'   }
#' 
#'   legendlabels <- def_leglabels
#' 
#'   legendtitle <- if (is.null(legendtitle)) legendtitle <- "Data frames" else legendtitle<-legendtitle
#' 
#'   ### label AXIS ###
#'   ### label X-Axis
#'   if (is.null(label_x)) (if (is.character(funct)){
#'     if(type=="comparison"){
#'       if (funct=="d_mean") label_x <- "Bias: Difference in Mean"
#'       if (funct=="ad_mean") label_x <- "Bias: Absolute Difference in Mean"
#'       if (funct=="d_prop") label_x <- "Bias: Difference in Proportions"
#'       if (funct=="ad_prop") label_x <- "Bias: Absolute Difference in Proportions"
#'       if (funct=="rel_mean") label_x <- "Bias: Relative Difference in Mean"
#'       if (funct=="abs_rel_mean") label_x <- "Bias: Absolute Relative Difference in Mean"
#'       if (funct=="rel_prop") label_x <- "Bias: Relative Difference in Proportions"
#'       if (funct=="abs_rel_prop") label_x <- "Bias: Absolute Relative Difference in Proportions"
#'       if (funct=="ad_median") label_x <- "Bias: Absolute Relative Difference in Median"
#'     }
#'     if(type=="nonresponse"){
#'       if (funct=="d_mean") label_x <- "Nonresponse Bias:\n Difference in Mean"
#'       if (funct=="ad_mean") label_x <- "Nonresponse Bias:\n Absolute Difference in Mean"
#'       if (funct=="d_prop") label_x <- "Nonresponse Bias:\n Difference in Proportions"
#'       if (funct=="ad_prop") label_x <- "Nonresponse Bias:\n Absolute Difference in Proportions"
#'       if (funct=="rel_mean") label_x <- "Nonresponse Bias:\n Relative Difference in Mean"
#'       if (funct=="abs_rel_mean") label_x <- "Nonresponse Bias:\n Absolute Relative Difference in Mean"
#'       if (funct=="rel_prop") label_x <- "Nonresponse Bias:\n Relative Difference in Proportions"
#'       if (funct=="abs_rel_prop") label_x <- "Nonresponse Bias:\n Absolute Relative Difference in Proportions"
#'       if (funct=="ad_median") label_x <- "Nonresponse Bias:\n Absolute Relative Difference in Median"
#'     }
#'     
#'   } 
#'   else label_x <- "Difference-Metric")
#' 
#'   ### label Y-Axis
#'   if (is.null(label_y)) label_y <- "Variables"
#' 
#' 
#'   #######################
#'   ### add all to list ###
#'   #######################
#' 
#'   data_list[[1]] <- data
#'   data_list[[2]] <- label_summet
#'   data_list[[3]] <- colors
#'   data_list[[4]] <- shapes
#'   data_list[[5]] <- legendlabels
#'   data_list[[6]] <- legendtitle
#'   data_list[[7]] <- label_x
#'   data_list[[8]] <- label_y
#'   data_list[[9]] <- as.character(funct)
#'   data_list[[10]]<- summetric
#'   data_list[[11]] <- summet_size
#'   data_list[[12]] <- plot_title
#'   data_list[[13]]<- name_dfs
#'   data_list[[14]]<- name_benchmarks
#'   if(!is.null(variables)){
#'     data_list[[15]]<- variables
#'   }
#'   if(is.null(variables)){
#'     data_list[15]<- list(NULL)
#'   }
#'   if(!is.null(varlabels)){
#'     data_list[[16]]<- varlabels
#'   }
#'   if(is.null(varlabels)){
#'     data_list[16]<- list(NULL)
#'   }
#' 
#' 
#'   names(data_list)<-c("data","label_summetric","colors","shapes","legendlabels",
#'                       "legendtitle","label_x","label_y","measure","summet","summet_size",
#'                       "plot_title","name_dfs","name_benchmarks","variables","varlabels")
#' 
#'    return(data_list)
#' }
#' 
#' 
#' ### function to calculate bootstrap means for the dataframe ###
#' boot_svy_mean<-function(data,variables, nboots=2000, 
#'                         id=NULL, weight=NULL, strata=NULL,func){
#'   
#'   if(is.null(id)) data$id<-1:nrow(data)
#'   if(is.null(id)==F) {if(is.na(id)) data$id<-1:nrow(data)}
#'   if(is.null(id)==F) {if (is.na(id)==F) data$id<-data[,id]}
#'   
#'   if(is.null(weight)) data$weight<-1
#'   if(is.null(weight)==F) {if(is.na(weight)) data$weight<-1}
#'   if(is.null(weight)==F) {if (is.na(weight)==F) data$weight<-data[,weight]}
#'   
#'   if(is.null(strata)==F) {if(is.na(strata)==F) strata<-data[,strata]}
#'   #if(is.null(strata)==F) strata<-data[,strata]
#'   
#'   
#'   
#'   
#'   
#'   data_design <- survey::svydesign(data = data, ids = ~ id,weights = ~weight, strata=strata)
#'   
#'   bootstrap_rep_design <- svrep::as_bootstrap_design(data_design,
#'                                               type = "Rao-Wu-Yue-Beaumont",
#'                                               replicates = nboots)
#'   
#'   final_boot_svy_mean<-function(variable,design,func){
#'     if(func!="ad_median") results<-survey::svymean(x = stats::reformulate(variable), 
#'                                                   design = design ,na.rm=T,return.replicates=T)
#'     if(func=="ad_median") results<-survey::svyquantile(x = stats::reformulate(variable), 
#'                                                   quantile=c(0.5),
#'                                                   design = design ,na.rm=T,return.replicates=T, 
#'                                                   interval.type="quantile", ci=F)
#'       
#'     return(results)
#'   }
#'   
#'   lapply(X=variables,FUN=final_boot_svy_mean,design=bootstrap_rep_design, func=func)
#' }
#' 
#' 
#' ### function to calculate survey means for the benchmark ###
#' mean_bench_func<-function(data,variables, 
#'                           id=NULL, weight=NULL, strata=NULL,func=func){
#'   
#'   if(is.null(id)) data$id<-c(1:nrow(data))
#'   if(is.null(id)==F) {if(is.na(id)) data$id<-1:nrow(data)}
#'   if(is.null(id)==F) {if (is.na(id)==F) data$id<-data[,id]}
#'   
#'   if(is.null(weight)) data$weight<-1
#'   if(is.null(weight)==F) {if(is.na(weight)) data$weight<-1}
#'   if(is.null(weight)==F) {if (is.na(weight)==F) data$weight<-data[,weight]}
#'   
#'   if(is.null(strata)==F) {if(is.na(strata)==F) strata<-data[,strata]}
#'   #if(is.null(strata)==F) strata<-data[,strata]
#'   
#'   
#'     data_design <- survey::svydesign(data = data, ids = ~ id,weights = ~weight, strata=strata)
#'   
#'   
#'   final_boot_svy_mean<-function(variable,design,func){
#'     if(func!="ad_median") results<-survey::svymean(x = stats::reformulate(variable), 
#'                                                    design = design ,na.rm=T,return.replicates=T)
#'     if(func=="ad_median") results<-survey::svyquantile(x = stats::reformulate(variable), 
#'                                                    quantile=c(0.5),
#'                                                    design = design ,na.rm=T,return.replicates=T, ci=F)
#'     return(results)
#'   }
#'   
#'   lapply(X=variables,FUN=final_boot_svy_mean,design=data_design,func=func)
#' }
#' 
#' 
#' 
#' 
#' 
#' measure_function<-function(svyboot_object,mean_bench_object,mean_bench,func="abs_rel_mean",
#'                            out="diff",alpha=0.05){
#'   
#'   if(func == "abs_rel_mean" | func =="abs_rel_prop"){
#'     subfunc_abs_rel_mean<-function(svyboot_object_part,mean_bench_object_part,
#'                                    out="diff", alpha=0.05){
#'       
#'       diff<-abs((svyboot_object_part[[1]][1]-mean_bench_object_part[[1]])/mean_bench_object_part[[1]])
#'       var_rel<-(1/mean_bench_object_part[[1]]^2)*stats::var(svyboot_object_part[[2]])
#'       SE<-sqrt(var_rel)
#'       upper_ci<- diff + stats::qnorm(1-alpha/2) * SE
#'       lower_ci<- diff - stats::qnorm(1-alpha/2) * SE
#'       
#'       
#'       if (out=="diff") return(diff)
#'       if (out=="SE") return(SE)
#'       if (out=="lower_ci") return(lower_ci)
#'       if (out=="upper_ci") return(upper_ci)
#'       
#'     }
#'     results<-mapply(subfunc_abs_rel_mean,svyboot_object,mean_bench_object,
#'                     MoreArgs=list(out=out, alpha=alpha))
#'   }
#'   
#'   if(func == "rel_mean" | func =="rel_prop"){
#'     subfunc_rel_mean<-function(svyboot_object_part,mean_bench_object_part,
#'                                out="diff", alpha=0.05){
#'       
#'       diff<-(svyboot_object_part[[1]][1]-mean_bench_object_part[[1]])/mean_bench_object_part[[1]]
#'       var_rel<-(1/mean_bench_object_part[[1]]^2)*stats::var(svyboot_object_part[[2]])
#'       SE<-sqrt(var_rel)
#'       upper_ci<- diff + stats::qnorm(1-alpha/2) * SE
#'       lower_ci<- diff - stats::qnorm(1-alpha/2) * SE
#'       
#'       
#'       if (out=="diff") return(diff)
#'       if (out=="SE") return(SE)
#'       if (out=="lower_ci") return(lower_ci)
#'       if (out=="upper_ci") return(upper_ci)
#'       
#'     }
#'     results<-mapply(subfunc_rel_mean,svyboot_object,mean_bench_object,
#'                     MoreArgs=list(out=out, alpha=alpha))
#'   }
#'   
#'   if(func == "ad_mean" | func =="ad_prop"){
#'     subfunc_ad_mean<-function(svyboot_object_part,mean_bench_object_part,
#'                               out="diff", alpha=0.05){
#'       
#'       diff<-abs(svyboot_object_part[[1]][1]-mean_bench_object_part[[1]])
#'       var<-stats::var(svyboot_object_part[[2]])
#'       SE<-sqrt(var)
#'       upper_ci<- diff + stats::qnorm(1-alpha/2) * SE
#'       lower_ci<- diff - stats::qnorm(1-alpha/2) * SE
#'       
#'       
#'       if (out=="diff") return(diff)
#'       if (out=="SE") return(SE)
#'       if (out=="lower_ci") return(lower_ci)
#'       if (out=="upper_ci") return(upper_ci)
#'     }
#'     results<-mapply(subfunc_ad_mean,svyboot_object,mean_bench_object,
#'                     MoreArgs=list(out=out, alpha=alpha))
#'   }
#'   
#'   if(func == "d_mean" | func =="d_prop"){
#'     subfunc_d_mean<-function(svyboot_object_part,mean_bench_object_part,
#'                              out="diff", alpha=0.05){
#'       diff<-svyboot_object_part[[1]][1]-mean_bench_object_part[[1]]
#'       var<-stats::var(svyboot_object_part[[2]])
#'       SE<-sqrt(var)
#'       upper_ci<- diff + stats::qnorm(1-alpha/2) * SE
#'       lower_ci<- diff - stats::qnorm(1-alpha/2) * SE
#'       
#'       
#'       if (out=="diff") return(diff)
#'       if (out=="SE") return(SE)
#'       if (out=="lower_ci") return(lower_ci)
#'       if (out=="upper_ci") return(upper_ci)
#'       
#'     }
#'     results<-mapply(subfunc_d_mean,svyboot_object,mean_bench_object,
#'                     MoreArgs=list(out=out, alpha=alpha))}
#'     
#'     if(func == "ad_median"){
#'       subfunc_ad_median<-function(svyboot_object_part,mean_bench_object_part,
#'                                out="diff", alpha=0.05){
#'         diff<-abs(svyboot_object_part[[1]][1]-mean_bench_object_part[[1]])
#'         var<-stats::var(svyboot_object_part[[2]])
#'         SE<-sqrt(var)
#'         upper_ci<- diff + stats::qnorm(1-alpha/2) * SE
#'         lower_ci<- diff - stats::qnorm(1-alpha/2) * SE
#'         
#'         
#'         if (out=="diff") return(diff)
#'         if (out=="SE") return(SE)
#'         if (out=="lower_ci") return(lower_ci)
#'         if (out=="upper_ci") return(upper_ci)
#'         
#'       }
#'     
#'     results<-mapply(subfunc_ad_median,svyboot_object,mean_bench_object,
#'                     MoreArgs=list(out=out, alpha=alpha))
#'   }
#'   
#'   results
#'   
#' }
#' 
#' 
#' 
#' 
#' 
#' 
#' 
#' 
#' 
#' 
#' unfactor<-function(df, func, weight, strata, id){
#'   
#'   
#'   if(is.null(id)==F) if(is.na(id)==F){
#'     id_var<-df[,id]
#'     df<-df[,-which(colnames(df) %in% c(id))]
#'   } 
#'   
#'   if(is.null(weight)==F) if(is.na(weight)==F){
#'     weight_var<-df[,weight]
#'     df<-df[,-which(colnames(df) %in% c(weight))] 
#'   } 
#'   
#'   
#'   if(is.null(strata)==F) if(is.na(strata)==F){ 
#'     strata_var<-df[,strata]
#'     df<-df[,-which(colnames(df) %in% c(strata))]
#'   }
#'   
#'   ### check, if df variables are factors ###
#'   if(func=="REL_MEAN"| func=="ABS_REL_MEAN"| 
#'      func=="ABS_PROP_DIFF"| func=="PROP_DIFF"){
#'     
#'     for (i in 1:ncol(df)){
#'       
#'       if(is.factor(df[,i])){
#'         if(length(levels(df[,i]))==2){
#'           if(all(levels(df)== c("0","1"))) df[,i]<-as.numeric(as.character(df[,i]))
#'           else(stop(paste(colnames(df)[i],"must be coded as 0 and 1")))
#'         }
#'         if(length(levels(df[,i]))>2) stop(paste(colnames(df)[i],"must be numeric, or a factor coded as 0 or 1, for the chosen function"))
#'       }
#'     }
#'   }
#'   
#'   if(is.null(id)==F) if(is.na(id)==F){
#'     df[,id]<-id_var
#'   } 
#'   
#'   if(is.null(weight)==F) if(is.na(weight)==F){
#'     df[,weight]<-weight_var
#'   } 
#'   
#'   
#'   if(is.null(strata)==F) if(is.na(strata)==F){ 
#'     df[,strata]<-strata_var
#'   }
#'   
#'   df
#' }
#' 
#' 
#' aa

Try the sampcompR package in your browser

Any scripts or data that you put into this service are public.

sampcompR documentation built on Aug. 8, 2025, 7:35 p.m.