Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 DolphinDB 中导入一个没有列名行的大型 csv 文件。最简单的方法是什么?我在他们的网站上看到了一个我们可以更新架构文件的示例。不确定这是否是最好的方法,因为 csv 文件有很多列。
最简单的方法是加载 csv 文件,然后重命名表列。
t = loadText(file).rename!(newColNames)