1. ホーム
  2. パイソン

[解決済み】Pandasがカラム名だけの空のDataFrameを作成する。

2022-04-16 10:55:49

質問

動的なDataFrameがあり、正常に動作していますが、DataFrameに追加するデータがない場合、エラーが発生します。そのため、列名のみの空のDataFrameを作成するためのソリューションが必要です。

今のところ、以下のような感じです。

df = pd.DataFrame(columns=COLUMN_NAMES) # Note that there are now row data inserted.

PS: 列名がDataFrameに表示されることが重要です。

でも、こうやって使ってみると、結果的にこんな感じになってしまうんですよね。

Index([], dtype='object')
Empty DataFrame

Empty DataFrame"の部分は良いですね! しかし、Indexの代わりにカラムを表示する必要があります。

編集する

大事なことがわかりました。このDataFrameをJinja2を使ってPDFに変換しているため、このように最初にHTMLに出力するメソッドを呼び出しています。

df.to_html()

ここがカラムの迷いどころだと思うんです。

編集2 一般的には、この例に従いました。 http://pbpython.com/pdf-reports.html . cssもリンク先からです。 これは、データフレームをPDFに送るためにやっていることです。

env = Environment(loader=FileSystemLoader('.'))
template = env.get_template("pdf_report_template.html")
template_vars = {"my_dataframe": df.to_html()}

html_out = template.render(template_vars)
HTML(string=html_out).write_pdf("my_pdf.pdf", stylesheets=["pdf_report_style.css"])

Edit3:

作成直後のデータフレームをプリントアウトすると、次のようになります。

[0 rows x 9 columns]
Empty DataFrame
Columns: [column_a, column_b, column_c, column_d, 
column_e, column_f, column_g, 
column_h, column_i]
Index: []

合理的だと思いますが、template_varsをプリントアウトすると。

'my_dataframe': '<table border="1" class="dataframe">\n  <tbody>\n    <tr>\n      <td>Index([], dtype=\'object\')</td>\n      <td>Empty DataFrame</td>\n    </tr>\n  </tbody>\n</table>'

そして、すでに列がなくなっているようです。

E4: 以下のようにプリントアウトすると

print(df.to_html())

すでに以下のような結果が得られています。

<table border="1" class="dataframe">
  <tbody>
    <tr>
      <td>Index([], dtype='object')</td>
      <td>Empty DataFrame</td>
    </tr>
  </tbody>
</table>

解決方法は?

空のDataFrameをカラム名かIndexで作成することができます。

In [4]: import pandas as pd
In [5]: df = pd.DataFrame(columns=['A','B','C','D','E','F','G'])
In [6]: df
Out[6]:
Empty DataFrame
Columns: [A, B, C, D, E, F, G]
Index: []

または

In [7]: df = pd.DataFrame(index=range(1,10))
In [8]: df
Out[8]:
Empty DataFrame
Columns: []
Index: [1, 2, 3, 4, 5, 6, 7, 8, 9]

編集してください。 .to_htmlの修正をしていただいても、再現できないのですが。これは

df = pd.DataFrame(columns=['A','B','C','D','E','F','G'])
df.to_html('test.html')

プロデュースします。

<table border="1" class="dataframe">
  <thead>
    <tr style="text-align: right;">
      <th></th>
      <th>A</th>
      <th>B</th>
      <th>C</th>
      <th>D</th>
      <th>E</th>
      <th>F</th>
      <th>G</th>
    </tr>
  </thead>
  <tbody>
  </tbody>
</table>