File:Empirical CDF uk.png

From Wikimedia Commons, the free media repository
Jump to navigation Jump to search

Empirical_CDF_uk.png(400 × 320 pixels, file size: 6 KB, MIME type: image/png)

Captions

Captions

Add a one-line explanation of what this file represents

Summary[edit]

Description
Українська: Це є унаочненням емпіричної функції розподілу. Сірий стовпчики показують зразки, які відповідають їй, а зелена лінія є теоретичним розподілом, з якого було витягнуто ці зразки.
Date
Source
Author
Other versions
%This is Matlab code to generate a visualization of the empirical
%distribution function
%This code released under the CC0 "license"

%Generate random samples
NumSamps =20; 

%Get standard normally distributed samples
samples = randn(NumSamps,1);

%Get emprical cdf
[f,x] = ecdf(samples);

%Get real cdf
x_cdf = [-5:0.01:5];
y_cdf = normcdf(x_cdf);

%Generate figure;
figure; hold on;
plot(x_cdf,y_cdf,'-','Color',[0.6 0.6 0.6],'LineWidth',2);
stairs(x,f,'b-','LineWidth',2);
%The 1/NumSamps ensures the black bars are scaled to be probabilities
plot([samples samples]',[zeros(NumSamps,1) (1/NumSamps)*ones(NumSamps,1)]','-k','LineWidth',2);
set(gca,'FontSize',12)
grid on; box on;
xlim([-4 4])

Licensing[edit]

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.

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeThumbnailDimensionsUserComment
current11:30, 28 January 2018Thumbnail for version as of 11:30, 28 January 2018400 × 320 (6 KB)Nagualdesign (talk | contribs)Оновлено.
22:19, 23 November 2016Thumbnail for version as of 22:19, 23 November 2016412 × 318 (4 KB)Olexa Riznyk (talk | contribs)User created page with UploadWizard

The following 2 pages use this file:

File usage on other wikis

The following other wikis use this file:

Metadata