建立 Pandas DataFrame 的 PNG 映像
您已經建立了一個 Pandas DataFrame 並希望將其顯示並儲存為 PNG 映像。雖然可以選擇將其轉換為 HTML,但 PNG 格式會更理想。這是一個維護 DataFrame 表格格式的解決方案:
<code class="python">import matplotlib.pyplot as plt import pandas as pd from pandas.plotting import table # Hide axes and create a subplot fig = plt.figure() ax = fig.add_subplot(111, frame_on=False) ax.xaxis.set_visible(False) ax.yaxis.set_visible(False) # Plot the DataFrame without the axes table(ax, df) # Remove any text that may still be visible plt.text(0, 0, '') ax.get_xaxis().set_ticks([]) ax.get_yaxis().set_ticks([]) # Save the plot as a PNG file plt.xticks([]) plt.yticks([]) plt.savefig('dataframe_image.png', bbox_inches='tight') plt.close(fig)</code>
此方法建立不帶軸或標籤的 DataFrame 繪圖,有效地將其顯示為表格。它允許使用 matplotlib 的選項輕鬆定製表格的外觀,使其適合各種場景。
以上是如何建立 Pandas DataFrame 的 PNG 映像?的詳細內容。更多資訊請關注PHP中文網其他相關文章!