File:Linkfunction for binary response.svg

Summary

Description
English: In a generalized linear model (GLM) framework, three commonly used link functions for modeling binary responses are the logit, probit, and complementary log-log functions.
Deutsch: In einem generalisierten linearen Modell (GLM) gibt es drei häufig verwendete Verknüpfungsfunktionen für die Modellierung binärer Antworten: die Logit-, Probit- und komplementäre Log-Log-Funktionen.
Date
Source Own work
Author Sigbert

R code:

   x <- seq(-3, 3, by=0.01)
   lx <- exp(x)/(1+exp(x))
   px <- pnorm(x)
   cx <- 1-exp(-exp(x))  
   svg("linkfunction.svg", width=10, height=5)
   plot(range(x), c(0,1), type="n", ylab=expression(paste("P(", Y[i], "=1)")), main="Linkfunktionen",
        xlab=expression(paste("linearer Prädiktor ", beta[0], "+", beta[1],x[i1],"+", ldots, "+",beta[p], x[ip])))
   lines(x, lx)
   lines(x, px, col="red")
   lines(x, cx, col="blue")
   legend("topleft", col=c("black", "red", "blue"), legend=c("Logit", "Probit", "cloglog"), lwd=1)
   dev.off()

Licensing

I, the copyright holder of this work, hereby publish it under the following license:
Creative Commons CC-Zero This file is made available under the Creative Commons CC0 1.0 Universal Public Domain Dedication.
The person who associated a work with this deed has dedicated the work to the public domain by waiving all of their rights to the work worldwide under copyright law, including all related and neighboring rights, to the extent allowed by law. You can copy, modify, distribute and perform the work, even for commercial purposes, all without asking permission.

Category:CC-Zero#Linkfunction%20for%20binary%20response.svgCategory:Self-published work
Category:Probit function
Category:CC-Zero Category:Probit function Category:Self-published work