To read a .parquet file with R, you can use the arrow package, which provides a way to read and write data in the Arrow format, including Parquet.
For you, I created an example below:
library(arrow)
#read the Parquet file into a data.frame
data <- read_parquet("example.parquet")
#display the data.frame
print(data)
In this example, I used the read_parquet() function to read a Parquet file into a data.frame. The file is assumed to be in the current working directory with the name example.parquet
Note: the
arrowpackage requires that you have the Arrow C++ libraries installed on your system, it's a "little bit" more complex to install than a package (Aka ≠install.packages())
You might be interested by learning how to write/create .parquet file in R