Skip to content

Commit

Permalink
fix: argument filereplaced by source in scan_parquet function
Browse files Browse the repository at this point in the history
  • Loading branch information
ddotta committed Apr 26, 2024
1 parent 1dcea0a commit 286c784
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion book/content/benchmarking/_from_partitioned_parquet.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ toc()
partitioned_parquet_polars_lazy <- function(variables) {
result <- pl$scan_parquet(file = "Datasets/DataMultiTypes.parquet")$
result <- pl$scan_parquet(source = "Datasets/DataMultiTypes.parquet")$
# Conversion of 2 columns to Date format
with_columns(
pl$col("colDate1")$str$strptime(pl$Date, "%F %T", strict = FALSE),
Expand Down

0 comments on commit 286c784

Please sign in to comment.