File:Erlang dist cdf.svg
Summary
| Description |
English: The cumulative distribution function of Erlang distribution. |
| Date | |
| Source | Own work |
| Author | IkamusumeFan |
| Other versions |
|
Gnuplot Source Code
# Author: Autopilot, Ika
# Date: 12/08/2014
set term svg size 800,600 font 'Times, 24' enhanced
set output 'erlang_dist_cdf.svg'
set samples 1001
set xtics 0,2
set ytics 0,0.1
set mxtics 10
set mytics 10
set yrange [0:1.0]
set key bottom right
# F(x; k, mu)
F(x, k, mu) = (x<0)? 0 : igamma(k, x/mu)
plot [0:20] \
F(x, 1.0, 2.0) t "k = 1, {/Symbol m} = 2.0" lw 2 lc rgb "red", \
F(x, 2.0, 2.0) t "k = 2, {/Symbol m} = 2.0" lw 2 lc rgb "orange", \
F(x, 3.0, 2.0) t "k = 3, {/Symbol m} = 2.0" lw 2 lc rgb "yellow", \
F(x, 5.0, 1.0) t "k = 5, {/Symbol m} = 1.0" lw 2 lc rgb "green", \
F(x, 7.0, 0.5) t "k = 7, {/Symbol m} = 0.5" lw 2 lc rgb "black", \
F(x, 9.0, 1.0) t "k = 9, {/Symbol m} = 1.0" lw 2 lc rgb "blue", \
F(x, 1.0, 1.0) t "k = 1, {/Symbol m} = 1.0" lw 2 lc rgb "purple"
set term x11
set output
Licensing
I, the copyright holder of this work, hereby publish it under the following license:
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International license.
- You are free:
- to share – to copy, distribute and transmit the work
- to remix – to adapt the work
- Under the following conditions:
- attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
- share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.