File:Epanechnikov-Kernel.svg

Summary

Description
English: Plot of the Epanechnikov kernel: 3/(4*sqrt(5))*(1-x**2/5)
Date
Source Own work
Author Accountalive
SVG development
InfoField
Source code
InfoField

Gnuplot code

set output 'E:\Projekte\wikipedia\Epanechnikov-Kern\epanechnikov.svg'
set terminal svg

set termoption enhanced
#fname "DejaVu Sans"

set xrange [-3:3]
set yrange [-0.1:.5]

set grid
set xzeroaxis lt -1
set yzeroaxis lt -1
set noborder
set xtics nomirror
set ytics nomirror
set size ratio .3
#set xtics 0.5
set ytics 0.1

set samples 80

k(x)= x>=-sqrt(5) && x<sqrt(5) ? 3/(4*sqrt(5))*(1-x**2/5) : 0
set title 'Epanechnikov-Kern k_{E}(x)=3/(4*sqrt(5))*(1-x**2/5) '
plot  k(x) title "k_{E}(x)"

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#Epanechnikov-Kernel.svgCategory:Self-published work
Category:Statistics Category:Stochastic processes
Category:CC-Zero Category:Self-published work Category:Statistics Category:Stochastic processes Category:Translation possible - SVG Category:Valid SVG created with Gnuplot code:Charts