File:Logit.svg

Summary

Description
English: Graph of logit function defined as , where the base of logarithm is e.
Date
Source Own work
Author Krishnavedala
SVG development
InfoField
Can also be created using python
from numpy import *
from matplotlib.pyplot import *
 
fig = figure(figsize=(8,5))
ax = fig.add_subplot(111)
ax.grid(b=True,which='major')
ax.minorticks_on()

x = linspace(0.001, 0.999, 100)
y = log(x / (1.0 - x))
 
ax.plot(x,y, label=r"$y=\log(\frac{x}{1-x})$")
ax.set_ylabel(r"$y$")
ax.set_xlabel(r"$x$")
ax.legend()
fig.savefig("logit.svg",bbox_inches="tight",\
        pad_inches=.15)

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#Logit.svg
Category:Self-published work Category:SVG created with Matplotlib Category:Images with Python source code Category:Logit function Category:Beta distribution
Category:Beta distribution Category:CC-Zero Category:Images with Python source code Category:Logit function Category:SVG created with Matplotlib Category:Self-published work Category:Valid SVG created with Text Editor