Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

ml.rgr

Logistic Regression with Maximum Likelihood Estimation


Description

Fit a logistic regression model using maximum likelihood estimation

Usage

ml.rgr(dataset)

Arguments

dataset

a p x m data matrix, where the final column is a binary outcome variable. datashape may be applied to data so that the dataset is in the correct format for this function (see manual)

Details

This function is a wrapper for glm.fit, for convenient application within several functions in the apricomp package. This function may be called directly. For regression with an intercept included, the first column in the dataset must be a column of 1s.

Value

The function returns a column-vector containing the logistic regression coefficients and intercept (if specified).

Examples

## Logistic regression using a subset of the mtcars data (outcome is "vs")
data(mtcars)
mtc.df <- mtcars[, c(8, 1, 9)]
mtc.shaped <- datashape(dataset = mtc.df, y = 1)
ml.rgr(mtc.shaped)
ml.rgr(cbind(1,mtc.shaped))

apricom

Tools for the a Priori Comparison of Regression Modelling Strategies

v1.0.0
GPL-2
Authors
Romin Pajouheshnia [aut, cre], Wiebe Pestman [aut], Rolf Groenwold [aut]
Initial release
2015-11-11

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.