Fungsi Statistika Bagian Empat

AVERAGEIF

Returns the arithmetic mean of all cells in a range that satisfy a given condition. The AVERAGEIF function sums up all the results that match the logical test and divides this sum by the quantity of selected values.

AVERAGEIFS

Returns the arithmetic mean of all cells in a range that satisfy given multiple criteria. The AVERAGEIFS function sums up all the results that match the logical tests and divides this sum by the quantity of selected values.

AVEDEV

Mengembalikan rata-rata penyimpangan absolut dari titik data dari rerata mereka. Menampilkan difusi dalam satu set data.

Syntax

AVEDEV(Nomor1; Nomor2; ...., Nomor30)

Nomor1, Nomor2, ..., Number30 adalah nilai atau rentang yang mewakili sampel. Setiap nomor juga dapat diganti dengan referensi.

Example

-10000

AVERAGE

Mengembalikan rata-rata dari argumen.

Syntax

AVERAGE(Nomor1; Nomor2; ..., Nomor30)

Nomor1, Nomor2, ..., Nomor30 adalah nilai atau rentang numerik.

Example

-10000

AVERAGEA

Mengembalikan rata-rata dari argumen. Nilai dari teks adalah 0.

Syntax

AVERAGE(Nilai1; Nilai2; ...; Nilai30)

Nilai1, Nilai2, ..., Nilai30 adalah nilai atau rentang. Teks memiliki nilai 0.

Example

-10000

MAX

Returns the maximum value in a list of arguments.

Returns 0 if no numeric value and no error was encountered in the cell range(s) passed as cell reference(s). Text cells are ignored by MIN() and MAX(). The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered. Passing a literal string argument to MIN() or MAX(), e.g. MIN("string"), still results in an error.

Syntax

MAX(Number1; Number2; ...; Number30)

Number1, Number2, ..., Number30 are numerical values or ranges.

Example

=MAX(A1;A2;A3;50;100;200) returns the largest value from the list.

=MAX(A1:B100) returns the largest value from the list.

MAXA

Returns the maximum value in a list of arguments. In opposite to MAX, here you can enter text. The value of the text is 0.

The functions MINA() and MAXA() return 0 if no value (numeric or text) and no error was encountered.

Syntax

MAXA(Value1; Value2; ...; Value30)

Value1; Value2;...; Value30 are values or ranges. Text has the value of 0.

Example

=MAXA(A1;A2;A3;50;100;200;"Text") returns the largest value from the list.

=MAXA(A1:B100) returns the largest value from the list.

MEDIAN

Returns the median of a set of numbers. In a set containing an uneven number of values, the median will be the number in the middle of the set and in a set containing an even number of values, it will be the mean of the two values in the middle of the set.

Syntax

MEDIAN(Number1; Number2; ...; Number30)

Nomor1, Nomor2, ..., Nomor30 adalah nilai atau rentang, yang mewakili sampel. Setiap nomor juga dapat diganti dengan referensi.

Example

untuk nomor ganjil: =MEDIAN(1;5;9;20;21) menghasilkan 9 sebagai nilai median.

untuk angka bilangan genap:=MEDIAN(1;5;9;20) menghasilkan rata-rata dari dua nilai tengah 5 dan 9, sehingga 7.

MIN

Mengembalikan nilai minimum dalam daftar argumen.

Mengembalikan 0 jika bukan numerik dan tidak ada kesalahan yang ditemukan dalam rentang sel(s) yang dilewatkan sebagai referensi sel(s). Sel-sel teks diabaikan oleh MIN() dan MAX(). Fungsi MINA() dan MAXA() mengembalikan 0 jika tidak ada nilai (numerik atau teks) dan tidak ada kesalahan yang ditemukan. Melewati argumen string literal ke MIN() atau MAX(), misalnya MIN("string"), masih menghasilkan kesalahan.

Syntax

MIN(Nomor1; Nomor2; ...; Nomor30)

Nomor1, Nomor2, ..., Nomor30 adalah nilai atau rentang numerik.

Example

=MIN(A1:B100) mengembalikan nilai terkecil dalam daftar.

MINA

Mengembalikan nilai minimum dalam daftar argumen.Disini Anda juga dapat memasukkan teks. Nilai teks adalah 0.

Fungsi MINA() dan MAXA() mengembalikan 0 jika tidak ada nilai (numerik atau teks) dan tidak ada kesalahan yang ditemukan.

Syntax

MINA(Nilai1; Nilai2; ...; Nilai30)

Nilai1, Nilai2, ..., Nilai30 adalah nilai atau rentang. Teks memiliki nilai 0.

Example

=MINA(1;"Teks";20) menghasilkan 0.

=MINA(A1:B100) mengembalikan nilai terkecil dalam daftar.

MODE

Mengembalikan nilai yang paling umum dalam sebuah pengaturan data. Jika ada beberapa nilai dengan frekuensi yang sama, maka mengembalikan nilai terkecil. Kesalahan terjadi ketika nilai tidak muncul dua kali.

Ikon Catatan

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


Syntax

MODE(Nomor1; Nomor2; ...; Nomor30)

Nomor1, Nomor2, ..., Nomor30 adalah nilai atau rentang numerik.

Example

-10000

MODE.MULT

Returns a vertical array of the statistical modes (the most frequently occurring values) within a list of supplied numbers.

Syntax

MODE.MULT(Number1; Number2; ...; Number30)

Number1, Number2, ..., Number30 are numerical values or ranges.

Ikon Peringatan

As the MODE.MULT function returns an array of values, it must be entered as an array formula. If the function is not entered as an array formula, only the first mode is returned, which is the same as using the MODE.SNGL function.


Example

-10000

MODE.SNGL

Returns the most frequently occurring, or repetitive, value in an array or range of data. If there are several values with the same frequency, it returns the smallest value. An error occurs when a value doesn't appear twice.

Syntax

MODE.SNGL(Number1; Number2; ...; Number30)

Number1, Number2, ..., Number30 are numerical values or ranges.

Ikon Peringatan

If the data set contains no duplicate data points, MODE.SNGL returns the #VALUE! error value.


Example

-10000

NEGBINOMDIST

Returns the negative binomial distribution.

Syntax

NEGBINOMDIST(X; R; SP)

X represents the value returned for unsuccessful tests.

R represents the value returned for successful tests.

SP is the probability of the success of an attempt.

Example

=NEGBINOMDIST(1;1;0.5) returns 0.25.

NEGBINOMDIST

Returns the negative binomial density or distribution function.

Syntax

NEGBINOM.DIST(X; R; SP; Cumulative)

X represents the value returned for unsuccessful tests.

R represents the value returned for successful tests.

SP is the probability of the success of an attempt.

Cumulative = 0 calculates the density function, Cumulative = 1 calculates the distribution.

Example

=NEGBINOM.DIST(1;1;0.5;0) returns 0.25.

=NEGBINOM.DIST(1;1;0.5;1) returns 0.75.

NORMDIST

Mengembalikan fungsi kepadatan atau distribusi normal kumulatif.

Syntax

NORMINV(Angka)

Nilai adalah nilai distribusi berdasarkan distribusi normal yang akan dihitung.

Rerata adalah rerata nilai dari distribusi.

StDev adalah standar deviasi dari distribusi.

C adalah opsional.C = 0 menghitung fungsi kepadatan, C =1 menghitung distribusi.

Example

=NORMDIST(70;63;5;0) mengembalikan 0.03.

=NORMDIST(70;63;5;1) mengembalikan 0.92.

NORMDIST

Mengembalikan fungsi kepadatan atau distribusi normal kumulatif.

Syntax

NORMINV(Angka)

Number is the value of the distribution based on which the normal distribution is to be calculated.

Mean is the mean value of the distribution.

StDev is the standard deviation of the distribution.

C = 0 calculates the density function, C = 1 calculates the distribution.

Example

=NORM.DIST(70;63;5;0) returns 0.029945493.

=NORM.DIST(70;63;5;1) returns 0.9192433408.

NORMINV

Mengembalikan inversi dari distribusi normal kumulatif.

Syntax

NORMINV(Angka)

Nomor mewakili nilai probabilitas yang digunakan untuk menentukan distribusi normal terbalik.

Rerata mewakili nilai rata-rata dalam distribusi normal.

StDev mewakili standar deviasi dari distribusi normal.

Example

=NORMINV(0.9;63;5) mengembalikan 69.41. Jika rata-rata telur memiliki berat 63 gram dengan standar deviasi 5, maka akan ada 90% kemungkinan bahwa telur tidak akan lebih berat dari 69,41 gram g.

NORMINV

Mengembalikan inversi dari distribusi normal kumulatif.

Syntax

NORMINV(Angka)

Nomor mewakili nilai probabilitas yang digunakan untuk menentukan distribusi normal terbalik.

Rerata mewakili nilai rata-rata dalam distribusi normal.

StDev mewakili standar deviasi dari distribusi normal.

Example

=NORM.INV(0.9;63;5) mengembalikan 69.4077578277. jika rata-rata telur memiliki berat 63 gram dengan standar deviasi 5, maka akan ada 90% kemungkinan bahwa telur tidak akan lebih berat dari 69.41g gram.

PEARSON

Returns the Pearson product moment correlation coefficient r.

Syntax

PEARSON

Kelas mewakili susunan dari batas nilai.

Kelas mewakili susunan dari batas nilai.

Example

=PEARSON(A1:A30;B1:B30) returns the Pearson correlation coefficient of both data sets.

PERCENTILE

Mengembalikan nilai data alpha-persentil dalam larik. Persentil mengembalikan nilai skala untuk seri data yang berasal dari yang terkecil (Alpha=0) ke nilai terbesar (alpha=1) dari serangkaian data. Untuk Alpha = 25%, persentil berarti kuartil pertama; Alpha = 50% adalah MEDIAN.

Syntax

PERCENTILE

Kelas mewakili susunan dari batas nilai.

Alpha mewakili persentase skala antara 0 dan 1.

Example

=PERCENTILE(A1:A50;0.1) mewakili nilai dalam kumpulan data, yang sama dengan 10% dari skala data total di A1: A50.

PERCENTILE.EXC

Mengembalikan Alphapersentil dari rentang nilai yang diberikan untuk nilai tertentu Alpha, dalam rentang 0 hingga 1 (eksklusif). Persentil mengembalikan nilai skala untuk seri data yang berasal dari yang terkecil (Alpha=0) ke nilai terbesar (Alpha=1) dari serangkaian data. Untuk Alpha = 25%, persentil berarti kuartil pertama; Alpha = 50% adalah MEDIAN.

Ikon Peringatan

jikaAlphabukan kelipatan1/(n+1), (di mana n adalah jumlah nilai dalam yang disediakan larik), fungsi interpolasi antara nilai-nilai dalam larik yang disediakan, untuk menghitung nilai persentil. Namun, jikaAlphakurang dari 1/(n+1) atau Alpha lebih besar darin/(n+1), fungsi tidak dapat melakukan interpolasi, dan mengembalikan kesalahan.


Ikon Catatan

Perbedaan antaraPERCENTILE.INC dan PERCENTILE.EXCadalah PERCENTILE.INCfungsi nilai alfa berada dalam kisaran 0 hingga 1 inklusif, dan dalam PERCENTILE.EXC fungsi, nilai alfa berada dalam rentang 0 hingga 1 eksklusif.


Syntax

PERCENTILE

Kelas mewakili susunan dari batas nilai.

Alpha represents the percentage of the scale between 0 and 1.

Example

=PERCENTILE.EXC(A1:A50;10%) represents the value in the data set, which equals 10% of the total data scale in A1:A50.

PERCENTILE.INC

Returns the alpha-percentile of data values in an array. A percentile returns the scale value for a data series which goes from the smallest (Alpha=0) to the largest value (alpha=1) of a data series. For Alpha = 25%, the percentile means the first quartile; Alpha = 50% is the MEDIAN.

Ikon Catatan

The difference between PERCENTILE.INC and PERCENTILE.EXC is that, in the PERCENTILE.INC function the value of alpha is within the range 0 to 1 inclusive, and in the PERCENTILE.EXC function, the value of alpha is within the range 0 to 1 exclusive.


Syntax

PERCENTILE

Kelas mewakili susunan dari batas nilai.

Alpha represents the percentage of the scale between 0 and 1.

Example

=PERCENTILE.INC(A1:A50;0.1) represents the value in the data set, which equals 10% of the total data scale in A1:A50.

PERCENTRANK

Returns the percentage rank of a value in a sample.

Syntax

PERCENTRANK(Data; Value; Significance)

Kelas mewakili susunan dari batas nilai.

Value represents the value whose percentile rank must be determined.

Significance An optional argument that specifies the number of significant digits that the returned percentage value is rounded to. If omitted, a value of 3 is used.

Example

=PERCENTRANK(A1:A50;50) returns the percentage rank of the value 50 from the total range of all values found in A1:A50. If 50 falls outside the total range, an error message will appear.

PERCENTRANK.EXC

Returns the relative position, between 0 and 1 (exclusive), of a specified value within a supplied array.

Ikon Catatan

The difference between PERCENTRANK.INC and PERCENTRANK.EXC is that PERCENTRANK.INC calculates a value in the range 0 to 1 inclusive, whereas the PERCENTRANK.EXC function calculates a value in the range 0 to 1 exclusive.


Syntax

PERCENTRANK.EXC(Data; Value; Significance)

Kelas mewakili susunan dari batas nilai.

Value represents the value whose percentile rank must be determined.

Significance An optional argument that specifies the number of significant digits that the returned percentage value is rounded to.

Example

=PERCENTRANK.EXC(A1:A50;50) returns the percentage rank of the value 50 from the total range of all values found in A1:A50. If 50 falls outside the total range, an error message will appear.

PERCENTRANK.INC

Returns the relative position, between 0 and 1 (inclusive), of a specified value within a supplied array.

Ikon Catatan

The difference between PERCENTRANK.INC and PERCENTRANK.EXC is that PERCENTRANK.INC calculates a value in the range 0 to 1 inclusive, whereas the PERCENTRANK.EXC function calculates a value in the range 0 to 1 exclusive.


Syntax

PERCENTRANK.INC(Data; Value; Significance)

Kelas mewakili susunan dari batas nilai.

Value represents the value whose percentile rank must be determined.

Significance An optional argument that specifies the number of significant digits that the returned percentage value is rounded to.

Example

=PERCENTRANK.INC(A1:A50;50) returns the percentage rank of the value 50 from the total range of all values found in A1:A50. If 50 falls outside the total range, an error message will appear.

PHI

Returns the values of the distribution function for a standard normal distribution.

Syntax

PHI(Angka)

Number represents the value based on which the standard normal distribution is calculated.

Example

=PHI(2.25) = 0.03

=PHI(-2.25) = 0.03

=PHI(0) = 0.4

POISSON

Returns the Poisson distribution.

Syntax

POISSON(Number; Mean; C)

Angka mewakili nilai berdasarkan yang dihitung Poisson distribusi.

Rerata mewakili nilai tengah dari Poisson distribusi.

C (opsional) = 0 atau atau False menghitung fungsi kerapatan; C = 1 atau True menghitung distribusi. Ketika dihilangkan, nilai bawaan True dimasukkan ketika Anda menyimpan dokumen, untuk kompatibilitas terbaik dengan program lain dan versi yang lebih lama dari LibreOffice.

Example

=POISSON(60;50;1) mengembalikan 0.93.

POISSON.DIST

Mengembalikan Poisson distribusi.

Syntax

POISSON.DIST(Nomor; Rerata; C)

Angka mewakili nilai berdasarkan yang dihitung Poisson distribusi.

Rerata mewakili nilai tengah dari Poisson distribusi.

C (opsional) = 0 atau False menghitung fungsi kepadatan; C = 1 atau True menghitung distribusi. Ketika dihilangkan, nilai baku True dimasukkan ketika Anda menyimpan dokumen, untuk kompatibilitas terbaik dengan program lain dan versi yang lebih lama dari LibreOffice.

Example

=POISSON.DIST(60;50;1) mengembalikan 0.9278398202.

QUARTILE

Returns the quartile of a data set.

Syntax

QUARTILE(Data; Jenis)

Kelas mewakili susunan dari batas nilai.

Jenis mewakilkan jenis kuartil. (0 = MIN, 1 = 25%, 2 = 50% (MEDIAN), 3 = 75% and 4 = MAX.)

Example

=QUARTILE(A1:A50;2) returns the value of which 50% of the scale corresponds to the lowest to highest values in the range A1:A50.

QUARTILE.EXC

Returns a requested quartile of a supplied range of values, based on a percentile range of 0 to 1 exclusive.

Ikon Catatan

The difference between QUARTILE.INC and QUARTILE.EXC is that the QUARTILE.INC function bases its calculation on a percentile range of 0 to 1 inclusive, whereas the QUARTILE.EXC function bases its calculation on a percentile range of 0 to 1 exclusive.


Syntax

QUARTILE(Data; Jenis)

Data represents the range of data values for which you want to calculate the specified quartile.

Type An integer between 1 and 3, representing the required quartile. (if type = 1 or 3, the supplied array must contain more than 2 values)

Example

=QUARTILE.EXC(A1:A50;2) returns the value of which 50% of the scale corresponds to the lowest to highest values in the range A1:A50.

QUARTILE.INC

Mengembalikan kuartil kumpulan data.

Ikon Catatan

Perbedaan antara QUARTILE.INC dan QUARTILE.EXC adalah QUARTILE.INC fungsi mendasarkan perhitungannya pada kisaran persentil 0 hingga 1 inklusif, sedangkan fungsi QUARTILE.EXC mendasarkan perhitungannya pada kisaran persentil 0 hingga 1 eksklusif.


Syntax

QUARTILE(Data; Jenis)

Kelas mewakili susunan dari batas nilai.

Jenis mewakilkan jenis kuartil. (0 = MIN, 1 = 25%, 2 = 50% (MEDIAN), 3 = 75% and 4 = MAX.)

Example

=QUARTILE.INC(A1:A50;2) mengembalikan nilai 50% dari skala sesuai dengan nilai terendah ke tertinggi dalam rentang A1: A50.