I wonder if there exists way to work with large files in Mathematica ?
Currently I have a file about 500Mb with table data.
Import["data.txt","Table"];
What is alternate way?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use
OpenRead["file"]which gives you anInputStreamobject on which you can useRead[stream]. Depending on the formatting of the data file you may need to set custom option values inRead[]forRecordSeparators.Example: