Štatistické funkcie – časť 5

CONFIDENCE

Returns the (1-alpha) confidence interval for a normal distribution.

Syntax

CONFIDENCE(Alpha; StDev; Size)

Alpha is the level of the confidence interval.

ŠtandardOdchýlka reprezentuje štandardnú odchýlku normálneho rozdelenia.

Size is the size of the total population.

Example

=CONFIDENCE(0.05;1.5;100) gives 0.29.

CONFIDENCE

Returns the (1-alpha) confidence interval for a Student's t distribution.

tip

This function is available since LibreOffice 4.2


Syntax

CONFIDENCE.T(Alpha; StDev; Size)

Alpha is the level of the confidence interval.

ŠtandardOdchýlka reprezentuje štandardnú odchýlku normálneho rozdelenia.

Size is the size of the total population.

Example

=CONFIDENCE.T(0.05;1.5;100) gives 0.2976325427.

CONFIDENCE.NORM

Returns the (1-alpha) confidence interval for a normal distribution.

tip

This function is available since LibreOffice 4.2


Syntax

CONFIDENCE.NORM(Alpha; StDev; Size)

Alpha is the level of the confidence interval.

ŠtandardOdchýlka reprezentuje štandardnú odchýlku normálneho rozdelenia.

Size is the size of the total population.

Example

=CONFIDENCE.NORM(0.05;1.5;100) gives 0.2939945977.

CORREL

Returns the correlation coefficient between two data sets.

Syntax

CORREL(Data1; Data2)

KoncovýDátum je druhý dátum

KoncovýDátum je druhý dátum

Example

=CORREL(A1:A50;B1:B50) calculates the correlation coefficient as a measure of the linear correlation of the two data sets.

COVAR

Returns the covariance of the product of paired deviations.

Syntax

COVAR(Data1; Data2)

KoncovýDátum je druhý dátum

KoncovýDátum je druhý dátum

Example

=MODE(A1:A50)

COVARIANCE.P

Returns the covariance of the product of paired deviations, for the entire population.

tip

This function is available since LibreOffice 4.2


Syntax

COVARIANCE.P(Data1; Data2)

KoncovýDátum je druhý dátum

KoncovýDátum je druhý dátum

Example

=MODE(A1:A50)

COVARIANCE.S

Returns the covariance of the product of paired deviations, for a sample of the population.

tip

This function is available since LibreOffice 4.2


Syntax

COVARIANCE.S(Data1; Data2)

KoncovýDátum je druhý dátum

KoncovýDátum je druhý dátum

Example

=MODE(A1:A50)

CRITBINOM

Returns the smallest value for which the cumulative binomial distribution is greater than or equal to a criterion value.

Syntax

CRITBINOM(Pokusy; SP; Alfa)

Pokusy je celkový počet pokusov.

SP je pravdepodobnosť úspechu jedného pokusu.

Alfa je krajná pravdepodobnosť, ktorá má byť dosiahnutá alebo prekročená.

Example

=CRITBINOM(100;0.5;0.1) vracia 44.

KURT

Vráti mieru fluktuácie zadaných údajov (treba zadať najmenej 4 hodnoty).

Syntax

KURT(Number1; Number2; ...; Number30)

Number1, Number2, ..., Number30 are numeric arguments or ranges representing a random sample of distribution.

Example

=KURT(A1;A2;A3;A4;A5;A6)

LOGINV

Vráti hodnotu inverzného logaritmicko-normálneho rozdelenia.

Syntax

LOGINV (Číslo; StredHodnota; ŠtandardOdchýlka)

Číslo je hodnota pravdepodobnosti, pre ktorú chcete spočítať inverzné štandardné logaritmické rozdelenie.

StredHodnota je stredná hodnota štandardného logaritmického rozdelenia.

StredHodnota je stredná hodnota štandardného logaritmického rozdelenia.

Example

=LOGINV(0.05;0;1) vracia 0.19.

LOGNORMDIST

Vráti hodnotu inverzného logaritmicko-normálneho rozdelenia.

This function is identical to LOGINV and was introduced for interoperability with other office suites.

tip

This function is available since LibreOffice 4.3


Syntax

NORMINV(Číslo; StredHodnota; ŠtandardOdhchýlka)

Číslo je hodnota pravdepodobnosti, pre ktorú chcete spočítať inverzné štandardné logaritmické rozdelenie.

StredHodnota je stredná hodnota štandardného logaritmického rozdelenia.

StredHodnota je stredná hodnota štandardného logaritmického rozdelenia.

Example

=LOGINV(0.05;0;1) vracia 0.19.

LOGNORMDIST

Vráti hodnotu Weibullovho rozdelenia.

Syntax

LOGNORMDIST(Number; Mean; StDev; Cumulative)

Číslo je hodnota pravdepodobnosti, pre ktorú chcete spočítať štandardné logaritmické rozdelenie.

StredHodnota je stredná hodnota štandardného logaritmického rozdelenia.

StredHodnota je stredná hodnota štandardného logaritmického rozdelenia.

Cumulative (optional) = 0 calculates the density function, Cumulative = 1 calculates the distribution.

Example

=LOGNORMDIST(0.1;0;1) vracia 0.01.

LOGNORMDIST

Vráti hodnotu Weibullovho rozdelenia.

tip

This function is available since LibreOffice 4.3


Syntax

LOGNORM.DIST(Number; Mean; StDev; Cumulative)

Číslo je hodnota pravdepodobnosti, pre ktorú chcete spočítať štandardné logaritmické rozdelenie.

StredHodnota je stredná hodnota štandardného logaritmického rozdelenia.

StredHodnota je stredná hodnota štandardného logaritmického rozdelenia.

Cumulative (required) = 0 calculates the density function, Cumulative = 1 calculates the distribution.

Example

=LOGNORMDIST(0.1;0;1) vracia 0.01.

LARGE

Returns the Rank_c-th largest value in a data set.

Note Icon

This function is part of the Open Document Format for Office Applications (OpenDocument) standard Version 1.2. (ISO/IEC 26300:2-2015)


Syntax

LARGE(Data; RankC)

Data is the cell range of data.

RankC is the ranking of the value. If RankC is an array, the function becomes an array function.

Example

=LARGE(A1:C50;2) gives the second largest value in A1:C50.

=LARGE(A1:C50;B1:B5) entered as an array function gives an array of the c-th largest value in A1:C50 with ranks defined in B1:B5.

SMALL

Returns the Rank_c-th smallest value in a data set.

Note Icon

This function is part of the Open Document Format for Office Applications (OpenDocument) standard Version 1.2. (ISO/IEC 26300:2-2015)


Syntax

SMALL(Data; RankC)

Data is the cell range of data.

RankC is the rank of the value. If RankC is an array, the function becomes an array function.

Example

=SMALL(A1:C50;2) gives the second smallest value in A1:C50.

=SMALL(A1:C50;B1:B5) entered as an array function gives an array of the c-th smallest value in A1:C50 with ranks defined in B1:B5.