Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 .fits 文件,我想读取数据,不幸的是我对这种格式类型一点也不熟悉。有没有办法将其转换为表格(.txt 文件?),以便我可以使用 pandas 处理它?我刚刚找到 pyfits 并阅读了一些文档,但这对我来说有点模糊。
谢谢。
pyfits函数从文件中返回一个 ndarray : getdata
getdata
from pyfits import getdata data = getdata(file_name)
然后您可以决定将哪些切片放入您的 DataFrame(s)。
(这些 bnviewer 幻灯片[1] [2]似乎是一本不错的入门读物。)