Excel 确定范围
我正在创建一个包含一列数据的电子表格,我想 根据输入的 x 计算 x 行数的方差。 有什么建议吗?
I am creating a spreadsheet which has a column of data, and I would like to
calculate the varaince of x number of rows based on x inputed. Any advice?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正如 Matthew Flaschen 所建议的,不需要 VBA。 这可以通过 Excel 公式来完成。
假设您的数据位于 A 列中,从 A1 开始一直向下。
假设单元格 B1 的数字为 x,这是您要使用的样本大小。
那么您需要的公式应该是:
VAR 部分表示计算总体样本的方差,忽略非数字。 (该函数的变体包括针对整个总体的 VARP、针对非数字的 VARA 以及针对两者的 VARPA)。
偏移部分表示从单元格 A1 开始,横向移动 0 列,向下移动 0 列,然后选择 B1 列高、一列宽的范围。
As Matthew Flaschen suggests, there is no need for VBA. This can be done with Excel formulae.
Suppose your data is in column A, starting at A1 and going down.
Suppose cell B1 has the number x, which is the sample size you wish to use.
Then the formula you need should be:
The VAR part says calculate the variance of a sample of the population, ignoring non-numbers. (Variants to the function include VARP for the entire population, VARA to include non-numbers and VARPA for both).
The Offset part says to start at cell A1, move 0 columns across and zero columns down, and then select a range which is B1 columns tall and one column wide.