FrequencyTable 命令
- FrequencyTable( <List of Raw Data> )
-
返回一个表格(以文本形式),其第一列包含列表中唯一元素的排序列表 L ,第二列包含第一列中各值出现的次数。列表 L 可以是数字或文本。
- FrequencyTable( <Boolean Cumulative>, <List of Raw Data> )
-
如果 Cumulative = false , returns the same table as Frequency( <List of Raw Data> ) If Cumulative = true , returns a table whose first column is the same as in FrequencyTable( <List of Raw Data> ) and the second contains cumulative frequencies of values in the first column.
- FrequencyTable( <List of Class Boundaries>, <List of Raw Data> )
-
返回一个表格(以文本形式),其第一列包含区间(组),第二列包含 原始数据列表 中属于第一列区间的数字个数。除最高区间外,所有区间的形式均为 [a, b)。最高区间的形式为 [a, b]。
- FrequencyTable( <Boolean Cumulative>, <List of Class Boundaries>, <List of Raw Data> )
-
如果 Cumulative = false , returns the same table as FrequencyTable( <List of Class Boundaries>, <List of Raw Data> ) If Cumulative = true , returns a table whose first column is the same as in FrequencyTable( <List of Raw Data> ) and the second contains cumulative frequencies of values in the first column.
- FrequencyTable( <List of Class Boundaries>, <List of Raw Data>, <Use Density> , <Density Scale Factor (optional)> )
-
返回一个表格(以文本形式),其第一列包含区间(组),第二列包含对应 Histogram .
- FrequencyTable( <Boolean Cumulative>, <List of Class Boundaries>, <List of Raw Data>, <Use Density> , <Density Scale Factor (optional)> )
-
返回一个表格(以文本形式),其第一列包含区间(组),第二列包含对应 Histogram .
- FrequencyTable( <List of Raw Data>,<Scale Factor (optional)> )
-
返回一个表格(以文本形式),其第一列 值 包含以下内容的唯一元素的排序列表: <原始数据 列表> 和第二列 频数 包含第一列中值的出现次数乘以 以下内容的积: <比例因子> 。该列表可以是数字或文本。
FrequencyTable({"red", "red", "green", "green", "blue"}, 5)
返回一个表格,其第一列为
值
,包含条目
蓝色、绿色、红色(按字母顺序),第二列为
频数
,包含条目 5、10、10。
FrequencyTable({1, 1, 1, 2, 2, 3, 3, 4, 5}, 2)
返回一个表格,其第一列为
值
,包含条目 1、2、3、4、
5,第二列为
频数
,包含条目 6、4、4、2、2。
|
在列表中,1 出现了三次,因此 1 的出现次数(=3)必须乘以比例因子 2,从而在第二列中得到条目 6。 |