Learn R Programming

predRupdate (version 0.2.0)

inv_logit: Apply the inverse logit function to an input

Description

inv_logit applies the inverse-logit transformation (expit/ logistic function) to convert a vector of values between -Inf and Inf, to values between 0 and 1. Used to convert the linear predictor of a logistic regression model into a probability.

Usage

inv_logit(x)

Value

Numeric vector of probabilities (i.e. values between 0 and 1)

Arguments

x

Numeric vector with values between -Inf and Inf.

See Also

logit

Examples

Run this code
inv_logit(-2)
inv_logit(c(-2,-1,0,1,2))

Run the code above in your browser using DataLab