Nothing
mvglmmRank <-
function (game.data, method = "PB0",first.order = FALSE, home.field=TRUE, max.iter.EM = 1000,
tol1 = 1e-04, tol2 = 1e-04, tolFE = 0, tol.n = 1e-07, verbose = TRUE,OT.flag=FALSE,Hessian=FALSE,REML.N=TRUE)
{
if (!inherits(class("method"), "character")) {
cat("*Error: method must be a character string (using quotation marks)")
flush.console()
return(0)
}
if (first.order)
control <- list(iter.EM = max.iter.EM, tol1 = tol1, tol2 = tol2,
tolFE = tolFE, verbose = verbose,OT.flag=OT.flag,Hessian=Hessian)
if (!first.order)
control <- list(iter.EM = max.iter.EM, tol1 = tol1, tol2 = tol2,
tolFE = tolFE, verbose = verbose,OT.flag=OT.flag, Hessian=Hessian)
control.n <- list(iter.EM = max.iter.EM, tol1 = tol.n, verbose = verbose,OT.flag=OT.flag,Hessian=Hessian,REML.N=REML.N)
Z_mat <- game.data
Z_mat$Score.For <- Z_mat$home.response
Z_mat$Score.Against <- Z_mat$away.response
if(is.null(Z_mat$binary.response)){
Z_mat$home_win <- as.numeric(Z_mat$Score.For > Z_mat$Score.Against)
if(sum(Z_mat$Score.For == Z_mat$Score.Against)>0){
Z_mat[Z_mat$Score.For == Z_mat$Score.Against,]$home_win<-2
}
}else{
Z_mat$home_win<-Z_mat$binary.response
}
Z_mat$home <- as.character(Z_mat$home)
Z_mat$away <- as.character(Z_mat$away)
if (is.null(Z_mat$neutral.site))
Z_mat$neutral.site <- 0
if (method == "B") {
res <- binary_cre(Z_mat = Z_mat, first.order = first.order, home.field=home.field,
control = control)
}
else if (method == "P0") {
res <- poisson_cre(Z_mat = Z_mat, first.order = first.order,home.field=home.field,
control = control, game.effect = FALSE)
}
else if (method == "P1") {
res <- poisson_cre(Z_mat = Z_mat, first.order = first.order,home.field=home.field,
control = control, game.effect = TRUE)
}
else if (method == "N") {
res <- normal_cre(Z_mat = Z_mat, first.order = first.order,home.field=home.field,
control = control.n)
}
else if (method == "NB") {
res <- NB_cre(Z_mat = Z_mat, first.order = first.order, home.field=home.field,
control = control)
}
else if (method == "PB0") {
res <- PB_cre(Z_mat = Z_mat, first.order = first.order, home.field=home.field,
control = control, game.effect = FALSE)
}
else if (method == "PB1") {
res <- PB_cre(Z_mat = Z_mat, first.order = first.order, home.field=home.field,
control = control, game.effect = TRUE)
}
else if (method == "NB.mov") {
res <- NB_mov(Z_mat = Z_mat, first.order = first.order, home.field=home.field,
control = control)
}
else if (method == "N.mov") {
res <- N_mov(Z_mat = Z_mat, first.order = TRUE, home.field=home.field,
control = control.n)
}
else {
cat("Error in specification of method. This field is case sensitive.\n")
return(0)
}
res<-c(res,method=method)
class(res) <- "mvglmmRank"
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.