parquet_from_url {nflreadr}R Documentation

Load .parquet file from a remote connection

Description

Retrieves a parquet file from URL. This function is cached

Usage

parquet_from_url(url)

Arguments

url

a character url

Value

a dataframe as parsed by arrow::read_parquet()

Examples



try({
  parquet_from_url(
    "https://github.com/nflverse/nflverse-data/releases/download/player_stats/player_stats.parquet"
  )
})


[Package nflreadr version 1.4.1 Index]