I have a file that ends with ".vci_json.gz". My goal is to read the contents of this file using R and write contents in a structured table in CSV format.
I have attempted using the jsonlite
package for R like...
dataset1 <- suppressWarnings(stream_in(gzfile("data.vci_json")))
... but I get the following error message "opening gzfile input connection.
Error in open.connection(con, "rb") : cannot open the connection".
Any thoughts how I can get this data in a CSV format?