gpt4 book ai didi

wolfram-mathematica - Wolfram Mathematica 中处理大数据文件的方法

转载 作者:行者123 更新时间:2023-12-03 22:15:07 28 4
gpt4 key购买 nike

我想知道是否有办法在 Mathematica 中处理大文件?
目前我有一个大约 500Mb 的文件,其中包含表数据。

Import["data.txt","Table"];

什么是替代方式?

最佳答案

使用 OpenRead["file"] 这会给你一个 InputStream您可以使用的对象 Read[stream] .根据数据文件的格式,您可能需要在 Read[] 中设置自定义选项值。为 RecordSeparators .

例子:

In[1]:= str = OpenRead["ExampleData/USConstitution.txt"]    
Out[1]= InputStream["ExampleData/USConstitution.txt", 24]

In[2]:= Read[str, Word]
Out[2]= "We"
In[3]:= Read[str, Word]
Out[3]= "the"
In[4]:= Read[str, Record]
Out[4]= "People of the United States, in Order to form a more perfect Union,"

关于wolfram-mathematica - Wolfram Mathematica 中处理大数据文件的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2370570/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com