Nothing
nbRegMisrepEM <- function(formula, v_star, data, lambda = c(0.6,0.4), epsilon = 1e-08, maxit = 10000, maxrestarts = 20, verb = FALSE) {
# Simple checks to make sure the response and the v_star
# variable are contained within the data object;
if(!any(v_star == colnames(data))){
stop(paste("variable", v_star, "not present in dataframe" ))
}
# The name of the misrepresented variable;
v_star_name <- v_star
# v_star object needs to be a vector of 1's and 0's,
# with class 'numeric'
# Note that v_star changes from being a character to a vector
v_star <- data[, v_star_name]
# If v_star is a numeric, then do nothing
if(is.numeric(v_star)){
}else{
# But if it isn't numeric, then check to see if it's class is factor;
if(is.factor(v_star)){
# This is a pretty safe way of coercing a factor to a numeric, while
# retaining the original numeric vales
v_star <- as.numeric(levels(v_star))[v_star]
}else{
# and if it's not numeric, and not a factor, then something is
# seriously wrong;
stop("v_star variable must be of class 'factor' or 'numeric'")
}
}
# The v_star variable needs to be binary (has 2 unique values)
if(length(unique(v_star)) != 2){
stop("v_star variable must contain two unique values")
}
# Furthermore, the two unique values must be 0/1;
if(sort(unique(v_star))[1] != 0 | sort(unique(v_star))[2] != 1){
stop("v_star variable must be coded with ones and zeroes")
}
# Check to see if user supplied lambda vector is valid;
if(sum(lambda) != 1){
stop("Lambda vector must sum to one")
}
if(length(lambda) != 2){
stop("Lambda vector must contain two elements")
}
# Check to see if the design matrix is degenerate;
if( !is.null(alias(lm(formula = formula, data = data))$Complete) ){
stop("Linear dependencies exist in the covariates")
}
# obtain initial values
naive <- glm.nb(formula = formula, data = data, link = "log", x = TRUE, y = TRUE)
# This is a final error check that is done to ensure that the v* variable is
# also included in the formula specification;
if( any(colnames(naive$x) == v_star_name) ){
}else{
stop("v_star variable must be specified in 'formula'")
}
size <- naive$theta
coef.reg <- naive$coefficients
coef.reg <- c("size" = size, coef.reg)
theta <- coef.reg
x <- model.matrix(object = terms(formula), data = data)
# This other design matrix is made by first setting the v* column within the dataframe
# to be fixed at one.
data[,v_star_name] <- 1
# Notice capital X
X <- model.matrix(object = terms(formula), data = data)
if( length(theta[-1][ -grep(v_star_name, names(theta[-1])) ]) == 1 ){
xbeta <- as.vector(x[, -grep(v_star_name, colnames(x)) ] * theta[-1][ -grep(v_star_name, names(theta[-1])) ] )
}else{
xbeta <- as.vector(x[, -grep(v_star_name, colnames(x)) ] %*% theta[-1][ -grep(v_star_name, names(theta[-1])) ] )
}
iter <- 0
diff <- epsilon+1
attempts <- 1
# The response
y <- naive$y
n <- length(y)
# observed loglikelihood (partial LL, eq. 3 from Akakpo, Xia, Polansky 2018).
obs.ll <- function(lambda, coef){
sum( v_star *log( dnbinom(x = y, size = coef[1], mu = exp( x %*% coef[-1] )))) +
sum((1-v_star)*log(lambda[2]*dnbinom(x = y, size = coef[1], mu = exp( X %*% coef[-1] )) +
lambda[1]*dnbinom(x = y, size = coef[1], mu = exp( x %*% coef[-1]))))
}
# M step loglikelihood
mstep.ll <- function(theta, z){
-sum( log(dnbinom(x = y[v_star==1], size = theta[1], mu = exp( x %*% theta[-1] )[v_star==1] )))-
sum((1-z[v_star==0])*log(dnbinom(x = y[v_star==0], size = theta[1], mu = exp( X %*% theta[-1] )[v_star==0] ))+
z[v_star==0] *log(dnbinom(x = y[v_star==0], size = theta[1], mu = exp( x %*% theta[-1] )[v_star==0] )))
}
old.obs.ll <- obs.ll(lambda, coef.reg)
ll <- old.obs.ll
# Number of digits (to the right of decimal point) printed to console will
# depend on default user settings;
num_digits <- getOption("digits")
while(diff > epsilon && iter < maxit){
# E-step
dens1 <- lambda[1]*dnbinom(x = y, size = theta[1], mu = exp(xbeta))
dens2 <- lambda[2]*dnbinom(x = y, size = theta[1], mu = exp(X %*% theta[-1]))
z <- dens1/(dens1+dens2)
lambda.hat <- c(mean(z[v_star==0]), (1-mean(z[v_star==0])))
#Non-Linear minimization
m <- try(suppressWarnings(nlm(f = mstep.ll, p = theta, z = z)), silent = TRUE)
theta.hat <- m$estimate
# Annoyingly, nlm() does not provide m$estimate as a named vector,
# which consequently makes updating the xbeta object impossible.
names(theta.hat) <- names(theta)
new.obs.ll <- obs.ll(lambda.hat, theta.hat)
diff <- new.obs.ll-old.obs.ll
old.obs.ll <- new.obs.ll
ll <- c(ll, old.obs.ll)
lambda <- lambda.hat
theta <- theta.hat
if( length(theta[-1][ -grep(v_star_name, names(theta[-1])) ]) == 1 ){
xbeta <- as.vector(x[, -grep(v_star_name, colnames(x)) ] * theta[-1][ -grep(v_star_name, names(theta[-1])) ] )
}else{
xbeta <- as.vector(x[, -grep(v_star_name, colnames(x)) ] %*% theta[-1][ -grep(v_star_name, names(theta[-1])) ] )
}
iter <- iter+1
# If TRUE, print EM routine updates to the console;
if(verb){
message("iteration = ", iter,
" log-lik diff = ", format(diff, nsmall = num_digits),
" log-like = ", format(new.obs.ll, nsmall = num_digits) )
}
# stop execution and throw an error if the max iterations has been reached,
# and if the max num. of attempts has been made;
if(iter == maxit && attempts == maxrestarts){
stop("NOT CONVERGENT! Failed to converge after ", attempts, " attempts", call. = F)
}
# If the max iterations is reached, but we can make another attempt, then
# restart the EM routine with new mixing prop., but only notify user
# of this if verb = TRUE
if(iter == maxit && attempts < maxrestarts){
if(verb){
warning("Failed to converge. Restarting with new mixing proportions", immediate. = TRUE,
call. = FALSE)
}
# Update the number of attempts made.
attempts <- attempts + 1
# Reset iter to zero
iter <- 0
cond <- TRUE
while(cond){
lambda.new <- c(0,0)
lambda.new[2] <- runif(1)
lambda.new[1] <- 1-lambda.new[2]
if(min(lambda.new) < 0.15){
cond <- TRUE
lambda <- lambda.new
}else{
cond <- FALSE
}
}
# With the new mixing proportions, re-calculate the old.obs.ll,
old.obs.ll <- obs.ll(lambda, coef.reg)
ll <- old.obs.ll
}
}
message("number of iterations = ", iter)
# Make empty Hessian matrix;
hess <- matrix(data = 0, nrow = length(theta) + 1, ncol = length(theta) + 1,
dimnames = list( c("lambda", names(theta)), c("lambda", names(theta)) ) )
size <- as.numeric(theta[1])
# Element (1,1)
hess[1,1] <- -sum( (1-v_star)*( ( (1/(1+size/exp(X%*%theta[-1])))^y * (exp(X%*%theta[-1]) + size)^(-size) - (1/(1+size/exp(x%*%theta[-1])))^y * (exp(x%*%theta[-1]) + size)^(-size) ) / ( lambda[2]*(1/(1+size/exp(X%*%theta[-1])))^y * (exp(X%*%theta[-1]) + size)^(-size) + lambda[1]*(1/(1+size/exp(x%*%theta[-1])))^y * (exp(x%*%theta[-1]) + size)^(-size) ) )^2 )
# Element (2,2)
hess[2,2] <- sum( v_star*(trigamma(y+size)-trigamma(size)+(y+size)/(exp(x%*%theta[-1]) + size)^2 + 1/size - 2/(exp(x%*%theta[-1])+size))
+ (1-v_star) * ( trigamma(y+size)-trigamma(size)+1/size + ( lambda[2]^2*( 1/(1+size/exp(X%*%theta[-1])) )^(2*y) * ( (y+size)/(exp(X%*%theta[-1])+size)^(2*size+2) - 2/(exp(X%*%theta[-1]) + size)^(2*size+1) ) + lambda[2]*lambda[1]*( exp( (X+x)%*%theta[-1] )/( (exp(X%*%theta[-1])+size)*(exp(x%*%theta[-1])+size) ) )^y * 1/( (exp(X%*%theta[-1])+size)*(exp(x%*%theta[-1])+size) )^size * ( ( (y+size)*(1/(exp(X%*%theta[-1])+size) - 1/(exp(x%*%theta[-1])+size)) + log( (exp(X%*%theta[-1])+size)/(exp(x%*%theta[-1])+size) ) )^2 + (y+size)*(1/(exp(x%*%theta[-1])+size)^2 + 1/(exp(X%*%theta[-1])+size)^2) - 2*(1/(exp(x%*%theta[-1])+size) + 1/(exp(X%*%theta[-1])+size)) ) + lambda[1]^2*( 1/(1+size/exp(x%*%theta[-1])) )^(2*y) * ( (y+size)/(exp(x%*%theta[-1]) + size)^(2*size+2) - 2/(exp(x%*%theta[-1]) +size)^(2*size+1) ) )
/ ( lambda[2]*(1/(1+size/exp(X%*%theta[-1])))^y * (exp(X%*%theta[-1]) + size)^(-size) + lambda[1]*(1/(1+size/exp(x%*%theta[-1])))^y*(exp(x%*%theta[-1])+size)^(-size) )^2 ) )
# Element (2,1), (1,2)
hess[2,1] <- sum((1-v_star)* ( ( exp( (X+x)%*%theta[-1] )/( (exp(X%*%theta[-1])+size)*(exp(x%*%theta[-1])+size) ) )^y *( (exp(X%*%theta[-1])+size)*(exp(x%*%theta[-1])+size) )^(-size) * ( y*(1/(exp(x%*%theta[-1])+size) - 1/(exp(X%*%theta[-1])+size)) + log( (exp(x%*%theta[-1])+size)/(exp(X%*%theta[-1])+size) ) +size*(1/(exp(x%*%theta[-1])+size) - 1/(exp(X%*%theta[-1])+size)) ) )
/ ( lambda[2]*(1/(1+size/exp(X%*%theta[-1])))^y * (exp(X%*%theta[-1])+size)^(-size) + lambda[1]*(1/(1+size/exp(x%*%theta[-1])))^y * (exp(x%*%theta[-1])+size)^(-size) )^2 )
hess[1,2] <- sum((1-v_star)* ( ( exp( (X+x)%*%theta[-1] )/( (exp(X%*%theta[-1])+size)*(exp(x%*%theta[-1])+size) ) )^y *( (exp(X%*%theta[-1])+size)*(exp(x%*%theta[-1])+size) )^(-size) * ( y*(1/(exp(x%*%theta[-1])+size) - 1/(exp(X%*%theta[-1])+size)) + log( (exp(x%*%theta[-1])+size)/(exp(X%*%theta[-1])+size) ) +size*(1/(exp(x%*%theta[-1])+size) - 1/(exp(X%*%theta[-1])+size)) ) )
/ ( lambda[2]*(1/(1+size/exp(X%*%theta[-1])))^y * (exp(X%*%theta[-1])+size)^(-size) + lambda[1]*(1/(1+size/exp(x%*%theta[-1])))^y * (exp(x%*%theta[-1])+size)^(-size) )^2 )
# Main diagonal elements pertaining to regression coefficients;
for(j in 1:ncol(x)){
k <- j
hess[k + 2, j + 2] <- sum(-v_star*x[,j]*x[,k]*size*exp(x%*%theta[-1])*(y+size)/(exp(x%*%theta[-1])+size)^2
+ (1-v_star) * ( -lambda[2]^2 * (1/(1+size/exp(X%*%theta[-1])))^(2*y+1) * X[,j]*X[,k]*size*(y+size)/(exp(X%*%theta[-1])+size)^(2*size+1) + lambda[2]*lambda[1]*( exp((X+x)%*%theta[-1])/( (exp(X%*%theta[-1]) + size)*(exp(x%*%theta[-1])+size) ) )^y *( (exp(X%*%theta[-1])+size)*(exp(x%*%theta[-1])+size) )^(-size) * ( (y*(x[,k]-X[,k]) + (y+size)*( X[,k]/(1+size/exp(X%*%theta[-1])) - x[,k]/(1+size/exp(x%*%theta[-1])) ) ) * ( y*(x[,j]-X[,j]) + (y+size)*(X[,j]/(1+size/exp(X%*%theta[-1])) - x[,j]/(1+size/exp(x%*%theta[-1]))) ) - size*(y+size)*( x[,j]*x[,k]*exp(x%*%theta[-1])/(exp(x%*%theta[-1])+size)^2 + X[,j]*X[,k]*exp(X%*%theta[-1])/(exp(X%*%theta[-1]) + size)^2 ) ) - lambda[1]^2*(1/(1+size/exp(x%*%theta[-1])))^(2*y+1) * x[,j]*x[,k]*size*(y+size)/(exp(x%*%theta[-1]) +size)^(2*size+1) )
/ ( lambda[2]*(1/(1+size/exp(X%*%theta[-1])))^y * (exp(X%*%theta[-1])+size)^(-size) + lambda[1]*(1/(1+size/exp(x%*%theta[-1])))^y *(exp(x%*%theta[-1]) +size)^(-size) )^2 )
}
# Off diagonal elements pertaining to regression coefficients;
for(i in 1:choose(ncol(x), 2)){
j <- combn(x = 1:ncol(x), m = 2)[1,i]
k <- combn(x = 1:ncol(x), m = 2)[2,i]
hess[k + 2, j + 2] <- sum(-v_star*x[,j]*x[,k]*size*exp(x%*%theta[-1])*(y+size)/(exp(x%*%theta[-1])+size)^2
+ (1-v_star) * ( -lambda[2]^2 * (1/(1+size/exp(X%*%theta[-1])))^(2*y+1) * X[,j]*X[,k]*size*(y+size)/(exp(X%*%theta[-1])+size)^(2*size+1) + lambda[2]*lambda[1]*( exp((X+x)%*%theta[-1])/( (exp(X%*%theta[-1]) + size)*(exp(x%*%theta[-1])+size) ) )^y *( (exp(X%*%theta[-1])+size)*(exp(x%*%theta[-1])+size) )^(-size) * ( (y*(x[,k]-X[,k]) + (y+size)*( X[,k]/(1+size/exp(X%*%theta[-1])) - x[,k]/(1+size/exp(x%*%theta[-1])) ) ) * ( y*(x[,j]-X[,j]) + (y+size)*(X[,j]/(1+size/exp(X%*%theta[-1])) - x[,j]/(1+size/exp(x%*%theta[-1]))) ) - size*(y+size)*( x[,j]*x[,k]*exp(x%*%theta[-1])/(exp(x%*%theta[-1])+size)^2 + X[,j]*X[,k]*exp(X%*%theta[-1])/(exp(X%*%theta[-1]) + size)^2 ) ) - lambda[1]^2*(1/(1+size/exp(x%*%theta[-1])))^(2*y+1) * x[,j]*x[,k]*size*(y+size)/(exp(x%*%theta[-1]) +size)^(2*size+1) )
/ ( lambda[2]*(1/(1+size/exp(X%*%theta[-1])))^y * (exp(X%*%theta[-1])+size)^(-size) + lambda[1]*(1/(1+size/exp(x%*%theta[-1])))^y *(exp(x%*%theta[-1]) +size)^(-size) )^2 )
hess[j + 2, k + 2] <- sum(-v_star*x[,j]*x[,k]*size*exp(x%*%theta[-1])*(y+size)/(exp(x%*%theta[-1])+size)^2
+ (1-v_star) * ( -lambda[2]^2 * (1/(1+size/exp(X%*%theta[-1])))^(2*y+1) * X[,j]*X[,k]*size*(y+size)/(exp(X%*%theta[-1])+size)^(2*size+1) + lambda[2]*lambda[1]*( exp((X+x)%*%theta[-1])/( (exp(X%*%theta[-1]) + size)*(exp(x%*%theta[-1])+size) ) )^y *( (exp(X%*%theta[-1])+size)*(exp(x%*%theta[-1])+size) )^(-size) * ( (y*(x[,k]-X[,k]) + (y+size)*( X[,k]/(1+size/exp(X%*%theta[-1])) - x[,k]/(1+size/exp(x%*%theta[-1])) ) ) * ( y*(x[,j]-X[,j]) + (y+size)*(X[,j]/(1+size/exp(X%*%theta[-1])) - x[,j]/(1+size/exp(x%*%theta[-1]))) ) - size*(y+size)*( x[,j]*x[,k]*exp(x%*%theta[-1])/(exp(x%*%theta[-1])+size)^2 + X[,j]*X[,k]*exp(X%*%theta[-1])/(exp(X%*%theta[-1]) + size)^2 ) ) - lambda[1]^2*(1/(1+size/exp(x%*%theta[-1])))^(2*y+1) * x[,j]*x[,k]*size*(y+size)/(exp(x%*%theta[-1]) +size)^(2*size+1) )
/ ( lambda[2]*(1/(1+size/exp(X%*%theta[-1])))^y * (exp(X%*%theta[-1])+size)^(-size) + lambda[1]*(1/(1+size/exp(x%*%theta[-1])))^y *(exp(x%*%theta[-1]) +size)^(-size) )^2 )
}
# Covariances of regression coefficients -- lambda
for(j in 1:ncol(x)){
hess[j + 2, 1] <- sum( (1-v_star)* ( ( (exp((X+x)%*%theta[-1]) )/( (exp(X%*%theta[-1])+size)*(exp(x%*%theta[-1])+size) ) )^y * ( (exp(X%*%theta[-1])+size)*(exp(x%*%theta[-1])+size) )^(-size) * ( y*(X[,j]-x[,j]) + (y+size)*( x[,j]/(1+size/exp(x%*%theta[-1])) - X[,j]/(1+size/exp(X%*%theta[-1])) ) ) )
/ ( lambda[2]*(1/(1+size/exp(X%*%theta[-1])))^y * (exp(X%*%theta[-1])+size)^(-size) + lambda[1]*(1/(1+size/exp(x%*%theta[-1])))^y * (exp(x%*%theta[-1]) + size)^(-size) )^2 )
hess[1, j + 2] <- sum( (1-v_star)* ( ( (exp((X+x)%*%theta[-1]) )/( (exp(X%*%theta[-1])+size)*(exp(x%*%theta[-1])+size) ) )^y * ( (exp(X%*%theta[-1])+size)*(exp(x%*%theta[-1])+size) )^(-size) * ( y*(X[,j]-x[,j]) + (y+size)*( x[,j]/(1+size/exp(x%*%theta[-1])) - X[,j]/(1+size/exp(X%*%theta[-1])) ) ) )
/ ( lambda[2]*(1/(1+size/exp(X%*%theta[-1])))^y * (exp(X%*%theta[-1])+size)^(-size) + lambda[1]*(1/(1+size/exp(x%*%theta[-1])))^y * (exp(x%*%theta[-1]) + size)^(-size) )^2 )
}
# Covariances of regression coefficients -- phi (size, dispersion param)
for(k in 1:ncol(x)){
hess[k + 2, 2] <- sum( v_star * x[,k]*exp(x%*%theta[-1])*(y-exp(x%*%theta[-1]))/(exp(x%*%theta[-1])+size)^2
+(1-v_star)* ( lambda[2]^2 * (1/(1+size/exp(X%*%theta[-1])))^(2*y+1) * X[,k]*(y-exp(X%*%theta[-1]))/(exp(X%*%theta[-1])+size)^(2*size+1) + lambda[2]*lambda[1]* (exp( (X+x)%*%theta[-1] )/( (exp(X%*%theta[-1])+size)*(exp(x%*%theta[-1])+size) ))^y * ( (exp(X%*%theta[-1])+size)*(exp(x%*%theta[-1])+size) )^(-size) * ( (y*(x[,k]-X[,k]) + (y+size)*(X[,k]/(1+size/exp(X%*%theta[-1])) - x[,k]/(1+size/exp(x%*%theta[-1])) ) ) * ( (y+size)*(1/(exp(X%*%theta[-1])+size) - 1/(exp(x%*%theta[-1])+size)) + log( (exp(X%*%theta[-1])+size)/(exp(x%*%theta[-1])+size) ) ) + x[,k]*exp(x%*%theta[-1])*(y-exp(x%*%theta[-1]))/(exp(x%*%theta[-1])+size)^2 + X[,k]*exp(X%*%theta[-1])*(y-exp(X%*%theta[-1]))/(exp(X%*%theta[-1])+size)^2 ) + lambda[1]^2 * (1/(1+size/exp(x%*%theta[-1])))^(2*y+1) * x[,k]*(y-exp(x%*%theta[-1]))/(exp(x%*%theta[-1])+size)^(2*size+1) )
/ (lambda[2]*(1/(1+size/exp(X%*%theta[-1])))^y * (exp(X%*%theta[-1])+size)^(-size) + lambda[1]*(1/(1+size/exp(x%*%theta[-1])))^y * (exp(x%*%theta[-1])+size)^(-size) )^2 )
hess[2, k + 2] <- sum( v_star * x[,k]*exp(x%*%theta[-1])*(y-exp(x%*%theta[-1]))/(exp(x%*%theta[-1])+size)^2
+(1-v_star)* ( lambda[2]^2 * (1/(1+size/exp(X%*%theta[-1])))^(2*y+1) * X[,k]*(y-exp(X%*%theta[-1]))/(exp(X%*%theta[-1])+size)^(2*size+1) + lambda[2]*lambda[1]* (exp( (X+x)%*%theta[-1] )/( (exp(X%*%theta[-1])+size)*(exp(x%*%theta[-1])+size) ))^y * ( (exp(X%*%theta[-1])+size)*(exp(x%*%theta[-1])+size) )^(-size) * ( (y*(x[,k]-X[,k]) + (y+size)*(X[,k]/(1+size/exp(X%*%theta[-1])) - x[,k]/(1+size/exp(x%*%theta[-1])) ) ) * ( (y+size)*(1/(exp(X%*%theta[-1])+size) - 1/(exp(x%*%theta[-1])+size)) + log( (exp(X%*%theta[-1])+size)/(exp(x%*%theta[-1])+size) ) ) + x[,k]*exp(x%*%theta[-1])*(y-exp(x%*%theta[-1]))/(exp(x%*%theta[-1])+size)^2 + X[,k]*exp(X%*%theta[-1])*(y-exp(X%*%theta[-1]))/(exp(X%*%theta[-1])+size)^2 ) + lambda[1]^2 * (1/(1+size/exp(x%*%theta[-1])))^(2*y+1) * x[,k]*(y-exp(x%*%theta[-1]))/(exp(x%*%theta[-1])+size)^(2*size+1) )
/ (lambda[2]*(1/(1+size/exp(X%*%theta[-1])))^y * (exp(X%*%theta[-1])+size)^(-size) + lambda[1]*(1/(1+size/exp(x%*%theta[-1])))^y * (exp(x%*%theta[-1])+size)^(-size) )^2 )
}
# FIM is the negative of the Hessian;
FIM <- -hess
# Then find std. errors;
cov.pars.estimates <- solve(FIM)
std.error <- sqrt(diag(cov.pars.estimates))
# Calculate t values for regression coefficients
t_vals <- rep(NA, length(theta[-1]))
t_vals <- theta[-1] / std.error[-c(1,2)]
# Calculate p-values of regression coefficients
# argument df: '-1' because theta doesn't include lambda parameter.
p_vals <- rep(NA, length(t_vals))
p_vals <- 2 * pt(q = abs(t_vals), lower.tail = F, df = n - length(theta) - 1 )
# AIC, AICc, BIC
# Note that theta does not contain lamdba1, hence the '+1' included.
perf_metrics <- rep(NA, 3)
AIC <- 2 * (length(theta) + 1 - new.obs.ll)
AICc <- AIC + (2 * (length(theta) + 1)^2 + 2 * (length(theta) + 1) )/(n - (length(theta) + 1) - 1)
BIC <- log(n) * (length(theta) + 1) - 2 * new.obs.ll
perf_metrics <- c(AIC, AICc, BIC)
names(perf_metrics) <- c("AIC", "AICc", "BIC")
# Output
a <- list(y = y, lambda = lambda[2], params = theta, loglik = new.obs.ll,
posterior = as.numeric(z), all.loglik = ll, cov.estimates = cov.pars.estimates,
std.error = std.error, t.values = t_vals, p.values = p_vals,
ICs = perf_metrics, ft = "nbRegMisrepEM", formula = formula, v_star_name = v_star_name)
class(a) <- "misrepEM"
a
}
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.