Skip to contents

A parser is responsible for returning a valid R object based on the document-type. The Cadenza parser takes a multipart form with a specific structure and returns a dataframe.

Usage

parser_cadenza()

parser_delim(...)

Arguments

...

Additional arguments passed on to vroom::vroom().

Value

A list with the following elements:

  • data: the data sent by Cadenza; Can be a dataframe or a list

  • column_info: a dataframe with metadata regarding the columns in data if it is a dataframe

  • metadata: a list with all metadata supplied by Cadenza

  • ... Further elements linked to parameters specified in the extension description

Details

See plumber::registered_parsers() for a list of registered parsers names.

Functions