Interface: EvalROptions

WebRChan.EvalROptions

The configuration settings used when evaluating R code.

Table of contents

Properties

Properties

captureConditions

Optional captureConditions: boolean

Should conditions raised during execution be captured and returned? Default: true.

Defined in

webR/webr-chan.ts:40


captureStreams

Optional captureStreams: boolean

Should the stdout and stderr output streams be captured and returned? Deafult: true.

Defined in

webR/webr-chan.ts:35


env

Optional env: WebRData

The R environment to evaluate within. Deafult: The global environment.

Defined in

webR/webr-chan.ts:30


throwJsException

Optional throwJsException: boolean

Should an R error condition be re-thrown as a JavaScript exception? Deafult: true.

Defined in

webR/webr-chan.ts:50


withAutoprint

Optional withAutoprint: boolean

Should the code automatically print output as if it were written at an R console? Default: false.

Defined in

webR/webr-chan.ts:45


withHandlers

Optional withHandlers: boolean

Should the code be executed using a tryCatch with handlers in place? Deafult: true.

Defined in

webR/webr-chan.ts:55