Nothing
get_method <- function(nlme7engineLines) {
method <- "na"
IDENGINEline <- nlme7engineLines[grep("IDENGINE", nlme7engineLines)]
IDENGINENO <- unlist(strsplit(IDENGINEline, split = "\\W+"))[[2]]
if (length(IDENGINENO) > 0) {
method <- dplyr::case_when(
IDENGINENO == 1 ~ "QRPEM",
IDENGINENO == 2 ~ "IT2SEM",
IDENGINENO == 3 ~ "FOCE-LB",
IDENGINENO == 4 ~ "FO",
IDENGINENO == 5 ~ "FOCE-ELS",
IDENGINENO == 6 ~ "Naive-Poled"
)
}
method
}
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.