Skip to contents

Reads a gzipped JSON file and converts it into a tibble.

Usage

convert_json_gz_to_tibble(json_gz_path)

Arguments

json_gz_path

Path to the JSON.gz file.

Value

A tibble containing the parsed JSON data.

Examples

if (FALSE) {
df <- convert_json_gz_to_tibble("data.json.gz")
print(df)
}