Skip to content
This repository has been archived by the owner on Aug 1, 2024. It is now read-only.

Commit

Permalink
don't convert from pandas
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromedockes committed Jul 1, 2024
1 parent 937b3e2 commit d68394f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion doc/make_doc.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@

def add_report(df, name):
print(f"making report for {name}", end="", flush=True)
df = pl.from_pandas(df)
# TODO: from_pandas failing due to bug in polars; restore when it is fixed.
# df = pl.from_pandas(df)
pretty_name = name.replace("_", " ").capitalize()
start = time.time()
html = Report(df, title=pretty_name).html
Expand Down

0 comments on commit d68394f

Please sign in to comment.