loglog_link_private: Log-log link function with guessing and lapsing rates

Description Usage Arguments Value Examples

Description

THIS IS AN INTERNAL FUNCTION: USE CLOGLOG_LINK FOR BEST RESULTS. Log-log link for use with GLM functions. The guessing and lapsing rate are fixed to values given in lims, hence link is a function of only one variable

Usage

1
loglog_link_private( guessing, lapsing )

Arguments

guessing

guessing rate

lapsing

lapsing rate

Value

link

Log-log link for use in all GLM functions

Examples

1
2
3
4
5
6
7
8
9
data( "01_Miranda" )
x <- example01$x
r <- example01$r
m <- example01$m
glmdata <- data.frame( cbind( r/m ,m , x ) )
names( glmdata ) <- c( "resp", "m", "x" )
glmformula <- c( "resp ~ x" )
userlink<-loglog_link_private( 0.1, 0.1 )
fit <- glm( glmformula, data = glmdata, weights = m, family = binomial( userlink ) )

modelfree documentation built on May 2, 2019, 6:07 p.m.