Nothing
logLik.probit <- function( object, ... ) {
if( !inherits( object, "maxLik" ) ) {
stop( "the object must inherit from class 'maxLik'" )
}
result <- NextMethod( object )
attr( result, "nobs" ) <- nObs( object )
attr( result, "df" ) <- sum( activePar( object ) )
class( result ) <- "logLik"
return( result )
}
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.