Learn R Programming

rb3 (version 0.0.12)

convert_to: Converts B3 messy files to structured formats

Description

Convert B3 files to structured formats based on the template.

Usage

convert_to(
  filename,
  template = NULL,
  parse_fields = TRUE,
  format = "csv",
  destdir = NULL
)

Value

a string with the file path of generated file.

Arguments

filename

a string containing a path for the file.

template

a string with the template name.

parse_fields

a logical indicating if the fields must be parsed.

format

output format

destdir

a string with destination directory to save converted file

See Also

read_marketdata

Examples

Run this code
if (FALSE) {
f <- system.file("extdata/Indic.txt", package = "rb3")
res <- convert_to(f, output_format = "csv")
res <- convert_to(f, output_format = "json")
}

Run the code above in your browser using DataLab