Pandas 在哪里存储元数据信息?
熊猫在哪里存储其元数据信息? 例如。如果执行pandas.dataframe.info(),则返回元数据信息。
这个元数据在哪里存储?还是熊猫在不存储任何地方的情况下动态生成它? 另外,如果它被存储了,如何找到元数据所采用的内存使用情况?
Where does pandas store its metadata information?
For eg. if pandas.dataframe.info() is executed, it returns the metadata information.
Where is this metadata getting stored? or do Pandas generate it dynamically without storing anywhere?
Also, if it is getting stored, how to find the memory usage the metadata is taking?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它不被存储,而是根据需要计算。
这是由
DataFrameInfo
完成的,您可以检查pandas.io.formats.infoIt is not stored, it is computed on demand.
This is done by
DataFrameInfo
, you can check the source of pandas.io.formats.info