File:Logistic-curve.svg

Summary

Description The logistic sigmoid function.
Date
Source Created from scratch with gnuplot
Author Qef (talk)
Other versions
Category:Valid SVG created with Text Editor
 
This vector image was created with a text editor.

Source code

Created with gnuplot using the following input file:

set terminal svg font "Bitstream Vera Sans,18" size 600,400
set output "Logistic-curve.svg"

set xrange [-6:6]
set xzeroaxis linetype -1
set yzeroaxis linetype -1
set xtics axis nomirror
set ytics axis nomirror 0,0.5,1
set key off
set grid
set border 1

set samples 400

plot exp(x)/(1 + exp(x)) with line linetype rgbcolor "orange" linewidth 2

SVG output filtered with the following command to replace the hyphens with proper minus signs:

sed -i 's/<text>-/<text>\xE2\x88\x92/g' Logistic-curve.svg

Licensing

Public domain This work has been released into the public domain by its author, Qef. This applies worldwide.

In some countries this may not be legally possible; if so:
Qef grants anyone the right to use this work for any purpose, without any conditions, unless such conditions are required by law.

Category:PD-user#Logistic-curve.svg Category:Logistic functions Category:Images with Gnuplot source code Category:Activation functions Category:Logistic regression
Category:Activation functions Category:Images with Gnuplot source code Category:Logistic functions Category:Logistic regression Category:PD-user Category:Valid SVG created with Text Editor