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.
我在玩 PyTables,偶然发现了一些我认为很明显的东西。我正在关注教程,但我想我误解了。
我有一个 PyTables Column 对象,我想将它的内容传输到列表或 numpy 数组。
所以我希望会有类似的东西:
mylist = h5file.root.mygroup.mytable.cols.mycolumn.to_array()
我想我可以迭代,并将每个值分别放在列表中,但我想知道我是否可以以某种方式直接提取它。
谢谢!
尝试这个:
mylist = h5file.root.mygroup.mytable.cols.mycolumn[:]