I'm pretty new to parquet file format and I'm using the read_parquet()
(in the arrow
package) to load parquet file (stored in my Dropbox share folder) into R. However, I received the following error message
library(arrow)
df <- read_parquet("https://www.dropbox.com/s/mysgf4sojpjgyp7/part-394.parquet?dl=1")
Error: Invalid: Unrecognized filesystem type in URI: https://www.dropbox.com/s/mysgf4sojpjgyp7/part-394.parquet?dl=1
What might cause this problem here and do I need to partition the url link beforehand?