在 openrefine 或 libre office 中对数据进行求和和平均
Summing and averaging data in openrefine or libre office
我有这种格式的数据:
Number
Name
Date
10
John
2020-01-01
12
Ann
2020-01-01
9
John
2020-01-02
10
Ann
2020-01-02
如何对具有特定名称的所有行的数字单元格的值求和,以及如何对每个名称求平均值?
谢谢!
在 LibreOffice Calc 中,例如,如果 10
在单元格 A2 中:
=SUMIF(B2:B5;"=John";A2:A5)
=AVERAGEIF(B2:B5;"=John";A2:A5)
结果:
19
9.5
我有这种格式的数据:
Number | Name | Date |
---|---|---|
10 | John | 2020-01-01 |
12 | Ann | 2020-01-01 |
9 | John | 2020-01-02 |
10 | Ann | 2020-01-02 |
如何对具有特定名称的所有行的数字单元格的值求和,以及如何对每个名称求平均值?
谢谢!
在 LibreOffice Calc 中,例如,如果 10
在单元格 A2 中:
=SUMIF(B2:B5;"=John";A2:A5)
=AVERAGEIF(B2:B5;"=John";A2:A5)
结果:
19
9.5