Use of txt versus csv for saving HoF
See original GitHub issueI like the #30 equation_file option to specify the location and filename of the HoF, and am using it to save to a txt rather than csv file. The equations in the latter don’t preview well on my maxOS machine when there are commas (e.g., from pow()), presumably because I have MS Excel installed.
Is there any reason not to do so? (The API Reference explicitly mentions csv.)
Issue Analytics
- State:
- Created a year ago
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Save a workbook to text format (.txt or .csv) - Microsoft Support
CSV (MS-DOS) .csv. Saves a workbook as a comma-delimited text file for use on the MS-DOS operating system, and ensures that tab characters,...
Read more >Which is faster to store data using Python, CSV or text?
Answer The fastness of CSV and text file depends on the use of it. Deep down both CSV and text file store data...
Read more >txt vs .csv file format for data table manipulation - Stack Overflow
Generally you export tables in either CSV (comma separated values) or TSV (tab separated values). Which you should choose depends mainly on your ......
Read more >Bulk Administration - File download retreival/can't save to .csv
Solved: I go to Bulk Administration then Job Scheduler and see my successful file download. A text file. I can open the file....
Read more >CSV and TXT Formats for Database Files - Aurea Software
CSV stands for comma separated values. If you have your database in Microsoft Excel as shown in the following image, then save it...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Hey @marknovak I’ve finally found some time to get this fix done. See https://github.com/MilesCranmer/PySR/pull/176
The fact that
csvstands for comma-separated value makes me think 3. is not a good option. Although I appreciate that some people might like to view the output split out in a spreadsheet by columns, I find the|separator clear and easy enough. Thus for me, since I’m trying to avoid Excel (incl. that it takes too long to open), just saving to.txtis all I want and need.