在带有 Danfo.js 的 node.js 环境中,读取 .csv 文件非常容易,如官方示例所示:
const dfd = require("danfojs-node")
dfd.read_csv("file:///home/Desktop/user_names.csv")
.then(df => {
df.head().print()
}).catch(err=>{
console.log(err);
})
但是,我找不到读取.tsv
文件的方法。
有没有办法用 Danfo.js 读取制表符分隔的文件?
在源代码中,我找到了以下评论:
* @param {config} (Optional). A CSV Config object that contains configurations
* for reading and decoding from CSV file(s).
但我是来自 R/Python 的 javascript 的新手,不知道从那里做什么。