Antoine Fabri

Results 299 issues of Antoine Fabri

From `?rlang::is_expression`: > In rlang, an expression is the return type of parse_expr(), the set of objects > that can be obtained from parsing R code ``` r x [1]...

Closes #93 @krlmlr how does it look ? Note the difference between the magrittr and base pipe here. It is possible in principle to boom only selected arguments, by manipulating...

We have to define the logic but also decide how it will be represented. There is no agreement on how to denominate a method from an R6 object created with...

Use case: * I provide a parameter `arg1` to a function * This parameter is used to build some more variables, that in turn are passed to other functions *...

flow_view_deps() with : * dashed lines where function wasn't called * count of calls * on the lines for package/promoted functions * After the function name, e.g. "vctrs::vec_size x3" for...

For #162 This works ok on given example and bquote but : * tweak background color for a better look * clean up flow_data, the logic should live in another...

And also chokes when using a binding in the global env : ``` r flow::flow_view_deps(tibble::lst) ``` ``` r flow::flow_view_deps(dplyr::lst) #> Error in getNamespace(ns): invalid data of mode 'character' (too short)...

So below it will only detect the first call: ``` source("a.R") if (TRUE) { source("b.R") } ``` I was probably too lazy to implement the recursion for my use case...

Maybe we can make another pass on this, there "should" be a way to extract a proper svg file from an html. I would also like the pdfs to be...

It already works with different functions, so that shouldn't be that hard. The use case is I'm working on a collection of functions in a package, and I'd like to...