前提・実現したいこと
pythonで財務諸表を自動で分析できるようなシステムを作っています。
pandasでDataFrameをHTMLテーブル(searched.html)として表示させる機能を実装中に調べたサイト
(https://laboratory.kazuuu.net/renders-a-dataframe-in-pandas-as-an-html-table/#toc5)で実行できるか試しましたができませんでした。
発生している問題・エラーメッセージ
エラーメッセージも出ないのでどう直していいかわかっていない状態です。
無し
該当のソースコード
table.py
1from flask import app 2import pandas as pd 3df=pd.read_csv('/クレスコ財務データ (自動保存済み).csv',encoding='shift_jis' ,usecols=[1,2]) 4df.index=['現金及び預金' 5,'受取手形及び売掛金' 6以下略 7pd.set_option('display.max_rows', 200) 8pd.set_option('display.max_columns', 3) 9html=df.to_html() 10text_file=open(r"searched.html","w") 11text_file.write(html) 12text_file.close()
試したこと
https://www.python.ambitious-engineer.com/archives/1174
pd.set_option('display.max_columns', 3)
df.to_html('searched.html')
としましたが、結局変わらなかったです。
補足情報(FW/ツールのバージョンなど)
FW:flask
言語:Python3.9.7
pandasダウンロード済み
ファイル:templates
howto.html
index.html
searched.htmlここに表を表示させたい
app.py table.py クレスコ財務データ(自動保存済み).csv
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/11/23 08:45
2021/11/23 10:10
2021/11/23 11:22
2021/11/23 11:33
2021/11/23 11:34
2021/11/23 11:37
2021/11/23 11:46
2021/11/23 12:00
2021/11/23 12:05
2021/11/23 12:19
2021/11/24 06:27 編集
2021/11/24 09:25