JavaScript 中 CSV 数据的数据操作(填充、最小、最大)?
我正在将不同的指标 CSV 文件加载到 JavaScript 中,例如:
CSV for population:
id,year,value
AF,1800,3280000
AF,1820,3280000
AF,1870,4207000
AG,1800,37000
AG,1851,37000
AG,1861,37000
对于每个指标文件,我需要:
- 填补每个实体缺失的年份 (id)
- 查找每个实体的时间跨度
- 查找每个实体的最小值和最大值
- 查找时间跨度对于指标
- 查找指标的最小值和最大值
执行这些操作的廉价方法是什么?或者,是否有一个好的 JavaScript 库来执行这些常见的数据操作并将数据有效地存储在各种对象表示中?
我希望上述文件的最终表示看起来像这样:
data = {
population : {
entities :
AF : {
data : {
1800 : 3280000,
1801 : 3280000,
},
entity_meta : {
start : 1800,
end :
min :
max :
},
[...]
indicator_meta : {
start : 1700,
end :
min :
max :
}
[...]
谢谢!
I'm loading different indicator CSV files into JavaScript, example:
CSV for population:
id,year,value
AF,1800,3280000
AF,1820,3280000
AF,1870,4207000
AG,1800,37000
AG,1851,37000
AG,1861,37000
For each indicator file I need to:
- Gap fill missing years for each entity (id)
- Find the time span for each entity
- Find the min and max for each entity
- Find the time span for the indicator
- Find the min and max for the indicator
What is an inexpensive way of performing these operations? Alternatively, is there a good JavaScript library for performing these kind of common data operations and storing the data effectively in various object representations?
I'd like the final representation of the above file to look something like:
data = {
population : {
entities :
AF : {
data : {
1800 : 3280000,
1801 : 3280000,
},
entity_meta : {
start : 1800,
end :
min :
max :
},
[...]
indicator_meta : {
start : 1700,
end :
min :
max :
}
[...]
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
假设您有 2d 数组中的 CSV 数据:
在这个示例中,我将使用 jQuery 实用函数,因为它将使工作变得更加容易,而无需任何实际开销。
这显然不是全部代码,但它应该清楚地解释应该采取的方法。
也不是说你想要的最终对象结构非常过于复杂,你应该在适当的地方使用数组,特别是对于
实体
和数据
。Lets Assume that you have the CSV data in a 2d array:
For this example I will use jQuerys utility functions as it will make the job a lot easier without any real overhead.
That obviously isn't all the code but it should explain clearly the approach that should be taken.
Also not that your intended final object structure is very much over complicated you should really use arrays where appropriate, especially for
entities
anddata
.使用 jQuery AJAX 获取 CSV 文件。
使用简单的 JavaScript 解析 CSV 并执行计算
Use jQuery AJAX to get the CSV file.
Use a simple JavaScript to parse the CSV and perform the calculations
也许,YUI 对一些批量操作会有帮助。 http://yuilibrary.com/yui/docs/dataschema/dataschema-text.html
Maybe, YUI would be helpful for some bulk operations. http://yuilibrary.com/yui/docs/dataschema/dataschema-text.html
有 javascript sql 数据库库。我想到了 TaffyDB。
There are javascript sql database libraries. TaffyDB comes to mind.