Nothing
#' get.multi.comparison
#'
#' Extracts alpha-/p-value correction method for multiple comparisons from list with 15 correction methods.
#' @param x text string to process.
#' @seealso \code{\link[JATSdecoder]{study.character}} for extracting multiple study characteristics at once.
#' @return Character. Identified author/method of multiple comparison correction procedure.
#' @export
#' @examples
#' x<-"We used Bonferroni corrected p-values."
#' get.multi.comparison(x)
get.multi.comparison<-function(x){
# convert to sentences if has length 1
if(length(x)==1) x<-text2sentences(x)
# procedure search terms
proc<-c(
"AlphaSim|Alpha[- ]Sim",
"[^a-z]FWER*[^a-z]|[Ff]amily[- ]*?[Ww]ise[- ]*?[Ee]rror[- ]*?[Rr]ate",
"[^A-Z]FDR[^A-Z]|[fF]alse[- ]*?[dD]iscovery[- ]*?[rR]ate",
"Boole[^a-z]",
"Bonferroni|[Bb]onff*err*onn*i",
"Fisher LSD|[Ll][Ss][Dd][^A-Za-z].*post[- ]*?hoc|post[- ]*?hoc.*[^a-zA-Z][Ll][Ss][Dd]|LSD[^A-Z].*Fisher|Fisher[^a-z].*LSD[^A-Z]|[Ll]east [Ss]ignificant [Dd]ifference",
"Holm[^a-z]",
"Tukey|Tuckey",
"Benjamini",
"Hochberg",
"Dunnett[^a-z]|Dunn*et[^a-z]",
"Duncan",
"Newman",
"Keuls",
"[\U0160S]id[a\U00E1]k",
"Scheff[e\U00E9\U00E8]|Schef[e\U00E9\U00E8]|Scheff[^a-z]|Sheff[e\U00E9\U00E8]"
)
# reduce to relavant lines
res<-grep("[Cc]orrected|[Cc]orrection|[Cc]orrected| *[Aa]djust|[Mm]ultiple|[Pp]ost[- ][Hh]oc",x,value=T)
# split lines
res<-unlist(strsplit(res,", |; "))
# remove lines that negate the use of a method
res<-grep("[Ii]nstead of| not |n[^ a-z]t|Since | since |rather than",res,invert=T,value=T)
# wich procedure is used
res<-which.term(res,terms=proc,tolower=F,hits_only=T)
# clean up
res<-gsub("\\[\\^A-Z\\]|\\*","",res)
res<-gsub("\\[\\^a-z\\]","",res)
res<-gsub("\\[\U0160S\\]","\U0160",res)
res<-gsub("\\[e\U00E9\U00E8\\]","\U00E9",res)
res<-gsub("\\[a\U00E1\\]","\U00E1",res)
res<-gsub("Bonferroni\\|Bonf.*","Bonferroni",res)
res<-gsub("Dunnett\\|Dunet","Dunnett",res)
res<-unique(gsub("\\|.*","",res))
res<-unique(res)
return(res)
}
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.