From 5a0243fd6aa2e96d2ae4f28f60eb9f21906df3d4 Mon Sep 17 00:00:00 2001 From: Mateus Harrington Date: Tue, 18 Nov 2025 15:30:01 +0000 Subject: [PATCH] Update parquet info function in parquet.qmd Current code produces a warning as the `parquet_info()` code is deprecated, updated to `read_parquet_info()` --- r_snacks/parquet.qmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r_snacks/parquet.qmd b/r_snacks/parquet.qmd index 17b6759..f7c48c8 100644 --- a/r_snacks/parquet.qmd +++ b/r_snacks/parquet.qmd @@ -56,7 +56,7 @@ Now that we know what's in our `data/` folder, we can get some info on this file ```{webr} #| autorun: false -nanoparquet::parquet_info("data/titanic.parquet") +nanoparquet::read_parquet_info("data/titanic.parquet") ``` Let's get info about the column types in our file with `parquet_column_types`