Nothing
source(paste(getwd(), "/R/SIMle.Legen.v1.R", sep = ""))
source(paste(getwd(), "/R/SIMle.Cheby.v1.R", sep = ""))
source(paste(getwd(), "/R/SIMle.Four.v1.R", sep = ""))
source(paste(getwd(), "/R/SIMle.Csp.v1.R", sep = ""))
source(paste(getwd(), "/R/SIMle.db1-20.v1.R", sep = ""))
source(paste(getwd(), "/R/SIMle.plot.v1.R", sep = ""))
source(paste(getwd(), "/R/SIMle.original_code.v1.R", sep = ""))
#' Visulization of Simultaneous Confidence Region(SCR) for test result
#'
#' @param df the result of test (estimated function under null and Simultaneous Confidence Region (SCR) )
#' @param type specify type of test, "homot" represents time-homogeneity test. "separa" is separability test
#' @param ops select type of estimation."nfix" refers to no fix estimation. "fixt" indicates fix time t estimation.
#' "fixx" represents fix variate estimation
#' @param title give the title for plot
#' @param lower give the lower bound for scale limits, the default is -1.3
#' @param upper give the upper bound for scale limits, the default is 1.3
#' @return the plot shows test estimated function and simultaneous confidence region (SCR)
#' @export
#'
test.plot = function(df, type, ops = "", title = "", lower = -1.3, upper = 1.3){
if(type == "homot"){
res = homot_plot(df, title = title, lower = lower, upper = upper)
return(res)
} else if (type == "separa"){
res = sep_plot(df, ops, title = title, lower = lower, upper = upper)
return(res)
} else{
return(stop("Invalid option!"))
}
}
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.