pandas.read_msgpack

pandas.read_msgpack(path_or_buf, encoding='utf-8', iterator=False, **kwargs)[source]

从指定的文件路径加载msgpack pandas对象

这是一个实验库,存储格式可能在未来版本之前不稳定。

参数:

path_or_buf:string文件路径,BytesIO like或string

encoding:解码msgpack str类型的编码

iterator:boolean,如果为True,则返回一个迭代器给解包器

(默认为False)

返回:

obj:存储在文件中的对象类型

Scroll To Top