-
Notifications
You must be signed in to change notification settings - Fork 3
/
DESCRIPTION
27 lines (27 loc) · 907 Bytes
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Package: breakerofchains
Title: Break Chained Expressions and Run Them with Printed Output
Version: 0.3.2
Authors@R:
person(given = "Miles",
family = "McBain",
role = c("aut", "cre"),
email = "[email protected]",
comment = c(ORCID = "0000-0003-2865-2548"))
Description: Run an infix operator expression chain up to the line your
cursor is on, printing the output, and ignoring any result assignment step.
This facilitates easier interactive debugging of chained code. Common
examples of code amenable to breaking with this tool are {dplyr} wrangling
chained with `%>%`, and {ggplot2} plotting chained with `+`.
License: MIT + file LICENSE
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.1.2
Suggests:
testthat (>= 3.0.0)
Config/testthat/edition: 3
Imports:
rstudioapi,
sourcetools,
dplyr,
magrittr,
utils