Skip to content

Commit

Permalink
pandas api update
Browse files Browse the repository at this point in the history
  • Loading branch information
JoFrhwld committed May 21, 2024
1 parent 3e46d86 commit 1d0c7e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/fasttrackpy/processors/outputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def param_to_dataframe(self):

param_df = param_df.with_columns(
error = pl.lit(self.smooth_error)
).with_row_count(name = "param")
).with_row_index(name = "param")

param_df = add_metadata(self, param_df)

Expand All @@ -117,7 +117,7 @@ def log_param_to_dataframe(self):

param_df = param_df.with_columns(
error = pl.lit(self.smooth_error)
).with_row_count(name = "param")
).with_row_index(name = "param")

param_df = add_metadata(self, param_df)

Expand Down

0 comments on commit 1d0c7e7

Please sign in to comment.