在Python中无法读取.mat文件。

huangapple go评论87阅读模式
英文:

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)

huangapple
  • 本文由 发表于 2023年7月23日 23:07:35
  • 转载请务必保留本文链接:https://go.coder-hub.com/76748942.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定