Count(), Rank(),Percentile.inc() ,Quartile.inc()

mac2022-06-30  54

Count()

COUNT(value1, [value2], …) count the number of cells contain certain numbers(not text)

COUNTA()

COUNTA(value1, [value2], …) used to count text(not number) counts the number of cells that are not empty in a range.

Countblank(range)

is used to count the number of empty cells in a range of cells.

Countif() & Countifs()

=COUNTIF(range, criteria) 可以是数字,也可以是文本 =COUNTIF(Where do you want to look?, What do you want to look for?) Use COUNTIF, one of the statistical functions, to count the number of cells that meet a criterion; for example, to count the number of times a particular city appears in a customer list.

In its simplest form, COUNTIF says:

=COUNTIF(Where do you want to look?, What do you want to look for?)

Sumif() & Sumifs()

SUMIF(range, criteria, [sum_range]) You use the SUMIF function to sum the values in a range that meet criteria that you specify(需要是数字)

Rank(),Rank.eq() 一样

Rank.avg()

Percentile.inc() 是Percentile()的新版本

percentile(array,k) Array 必需。定义相对位置的数组或数据区域。 K 必需。 0 到 1 之间的百分点值,包含 0 和 1。

备注 如果数组为空,则 PERCENTILE.INC 返回 错误值 #NUM!。 如果 k 是非数值的,则 PERCENTILE.INC 返回 错误值 #VALUE!。 如果 k < 0 或 k > 1,则 PERCENTILE.INC 返回 错误值 #NUM!。 如果 k 不是 1/(n-1) 的倍数,则 PERCENTILE.INC 使用插值法来确定第 k 个百分点的值。 如果percentile.inc(A2:A15,0.75))所得结果是88,意思是75%的学生的分数都在88以下,25%以上的学生分数在88分以上

它和percentile.exc()有区别:

Quartile.INC()是Quartile()的新版本

四分位点通常用于销售和调查数据,以对总体进行分组。 例如,您可以使用 QUARTILE.INC 查找总体中前 25% 的收入值。 QUARTILE.INC(array,quart)

QUARTILE.INC 函数语法具有下列参数: Array 必需。 要求得四分位数值的数组或数字型单元格区域。 Quart 必需。 指定返回哪一个值。

备注 如果 array 为空,则 QUARTILE.INC 返回 错误值 #NUM!。 如果 quart 不为整数,将被截尾取整。 如果 quart < 0 或 quart > 4,则 QUARTILE.INC 返回 错误值 #NUM!。 当 quart 分别等于 0(零)、2 和 4 时,函数 MIN、MEDIAN 和 MAX 返回的值与函数 QUARTILE.INC 返回

Median() 中值

语法 MEDIAN(number1, [number2], …)

MEDIAN 函数语法具有下列参数: number1, number2, … Number1 是必需的,后续数字是可选的。 要计算中值的 1 到 255 个数字。

平均值 avarage 平均值是算术平均数,由一组数相加然后除以这些数的个数计算得出。 例如,2、3、3、5、7 和 10 的平均值为 30 除以 6,即 5。 中值 median 中值是一组数中间位置的数;即一半数的值比中值大,另一半数的值比中值小。 例如,2、3、3、5、7 和 10 的中值是 4。 众数 mode 众数是一组数中最常出现的数。 例如,2、3、3、5、7 和 10 的众数是 3。

最新回复(0)