• 主页

  • 投资

  • IT

    🔥
  • 设计

  • 销售

  • 共95篇

    python3.X - 数据分析 - Pandas

关闭

返回栏目

关闭

返回python3.X - 数据分析 - Pandas栏目

10 - 前置方法 - 打印优化设置

作者:

贺及楼

成为作者

更新日期:2024-08-14 11:15:12

打印优化设置

打印优化设置

在使用 Pandas 进行数据分析时,经常需要打印 DataFrame 或 Series 的内容到控制台查看。当数据量较大时,默认的打印输出可能不太友好,因此 Pandas 提供了一些设置来优化打印输出。
我们这里设定一个在print(df)前输出表格样式的方法
管理打印出来的表格,就不需要每次打印都调整了,一般来说只会进行几个df打印

  1. pandaprint()
  2. print(df)

https://blog.csdn.net/qq_14815199/article/details/120946121

  1. import numpy as np
  2. import pandas as pd
  3. def pandaprint():
  4. # 可以在大数据量下,没有省略号
  5. pd.set_option("display.max_columns", None)
  6. # 最多显示5列,如果表格有列,用分隔
  7. # pd.set_option("display.max_columns", 5)
  8. # 0 or 20
  9. # 在 repr() 方法中使用 max_rows 和 max_columns 来决定是否使用 to_string() 或 info() 将对象呈现为字符串。
  10. # 如果 Python/IPython 在终端中运行,则默认设置为 0,
  11. # pandas 将正确自动检测终端的宽度并切换到较小的格式,以防所有列都无法垂直放置。
  12. # IPython notebook、IPython qtconsole 或 IDLE 不在终端中运行,
  13. # 因此无法进行正确的自动检测,在这种情况下,默认值设置为 20。“无”值意味着无限制。
  14. # 可以在大数据量下,没有省略号
  15. pd.set_option("display.max_rows", None)
  16. # 最多显示10行
  17. # pd.set_option("display.max_rows", 10)
  18. # 显示两位小数位数
  19. pd.set_option("display.float_format",lambda x: "%.2f"%x)
  20. # 整个打印表的宽度(不够会叠起来)
  21. pd.set_option("display.width", 1000000)
  22. # 每一列最大10个字(包括...省略号的个字)
  23. pd.set_option("max_colwidth", 10)
  24. # 浮点型的数值阈值,DataFrame中所有绝对值小于10的数值,都会以0展示
  25. pd.set_option("display.chop_threshold", 10)
  26. # 左对齐
  27. pd.set_option("display.colheader_justify", "left")
  28. # 右对齐
  29. # pd.set_option("display.colheader_justify", "right")
  30. # 26-04-2022
  31. # pd.set_option("display.date_dayfirst", True)
  32. # 原始数据样式
  33. # pd.set_option("display.date_dayfirst", False)
  34. # 2022-04-26
  35. pd.set_option("display.date_yearfirst", True)
  36. # 原始数据样式
  37. # pd.set_option("display.date_yearfirst", False)
  38. # 多索引省略
  39. # pd.set_option("display.multi_sparse", False)
  40. # 多索引全展示
  41. pd.set_option("display.multi_sparse", True)
  42. # 是否折叠
  43. pd.set_option("display.expand_frame_repr", False)
  44. # 改善对齐
  45. pd.set_option("display.unicode.ambiguous_as_wide", True)
  46. # 改善对齐
  47. pd.set_option("display.unicode.east_asian_width", True)