英文:
Trouble reading .mat files in Python
问题
每当我尝试在Python中读取一个.mat
文件时,我会收到以下错误消息
ValueError: 未知的.mat文件类型,版本9,99
我想要打开的特定数据集在这里,名为"GSE137764_HCT_GaussiansGSE137764_mooth_scaled_autosome.mat"。
我已经尝试了多种解决方案,但仍然遇到相同的错误。特别地,我不使用MATLAB,所以我无法执行像save('myfile.mat', '-v7')
这样的操作。有什么建议吗?
英文:
Whenever I try to read a .mat
file in Python, I get the following error message
ValueError: Unknown mat file type, version 9, 99
The particular dataset I want to open is here, named "GSE137764_HCT_GaussiansGSE137764_mooth_scaled_autosome.mat".
I have tried to follow the multiple solutions available here, but I keep getting the same error. In particular, I do not use MATLAB, so I can't really do save('myfile.mat','-v7')
, for example. Any ideas?
答案1
得分: 1
这是一个“普通”的 CSV 文件,只不过命名不像一个。
pd.read_csv("GSE137764_HCT_GaussiansGSE137764_mooth_scaled_autosome.mat", delimiter="\t", low_memory=False)
英文:
It is a "normal" csv file, just not named like one.
pd.read_csv("GSE137764_HCT_GaussiansGSE137764_mooth_scaled_autosome.mat", delimiter="\t", low_memory=False)
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论