如何建立 Pandas DataFrame 的 PNG 映像?

Susan Sarandon
發布: 2024-10-31 17:58:03
原創
223 人瀏覽過

How do you create a PNG image of a Pandas DataFrame?

建立 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中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!