遍历所有表,转换为df,进行数据分析,将输出另存为html

时间:2019-07-18 12:34:20

标签: python pandas

我使用

连接到数据库
Creating engine
engine = create_engine('postgresql+psycopg2://{username}:{password}@{host}/{db}')

然后,我将tbl保存为df并进行数据分析:

df = pd.read_sql_query('''SELECT * FROM {name};''', engine)
report = pandas_profiling.ProfileReport(df,correlation_threshold=1)
#covert profile report as html file
report.to_file("\output2.html")

它工作正常。如何查看数据库中的所有表,对每个表进行性能分析并将输出另存为html-将来,我将在每个表的单独选项卡上工作,但现在不行吗?

我遇到了Python sqlite loop thought all tables in database

0 个答案:

没有答案