Nothing
linearPredictors <- function( x, ... ) {
UseMethod("linearPredictors")
}
linearPredictors.probit <- function( x, ... ) {
mm <- naresid(na.action(x), model.matrix(x))
# naresid works (for now). Should we keep it or replace it?
result <- drop( mm %*% x$estimate )
names( result ) <- rownames( mm )
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.