Package 'ViewPipeSteps'

Title: Create View Tabs of Pipe Chains
Description: Debugging pipe chains often consists of viewing the output after each step. This package adds RStudio addins and two functions that allow outputing each or select steps in a convenient way.
Authors: David Ranzolin [aut, cre, ctb], Joachim Gassen [aut]
Maintainer: David Ranzolin <[email protected]>
License: MIT + file LICENSE
Version: 0.1.0
Built: 2024-10-09 03:13:00 UTC
Source: https://github.com/daranzolin/viewpipesteps

Help Index


Prints each pipe step in current text selection

Description

Reads the currently selected text from the RStudio API and prints for each pipe step the resulting object if unique. Data frames are converted by as_tibble(). Meant to be called as an RStudio addin.

Reads the currently selected text from the RStudio API and prints for each pipe step the resulting object if unique. Data frames are converted by as.tibble(). Meant to be called as an RStudio addin.

Usage

printPipeChain()

printPipeChain()

Value

No return value, called for side effects


Creates a View() output for each pipe step in current text selection

Description

Reads the currently selected text from the RStudio API and displays a data view in the source pane for each pipe step creating a unique object. Meant to be called as an RStudio addin.

Reads the currently selected text from the RStudio API and displays a data view in the source pane for each pipe step creating a unique object. Meant to be called as an RStudio addin.

Usage

viewPipeChain()

viewPipeChain()

Value

No return value, called for side effects