我使用
连接到数据库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-将来,我将在每个表的单独选项卡上工作,但现在不行吗?