JSON2csv: JSON file to csv format

Description Usage Arguments Examples

Description

Conversion of JSON data to csv format.

Usage

1
JSON2csv(input_file)

Arguments

input_file

the path of a JSON file to read the file from; Only one file must be supplied

Examples

1
2
3
4
test1 <- '{"a":true, "b":false, "c":null}'
input_file <- tempfile(fileext = ".json")
writeLines(test1, input_file)
JSON2csv(input_file = input_file)

SainoRenjit/Dataconversion documentation built on May 14, 2019, 6:07 a.m.