GithubHelp home page GithubHelp logo

taber's People

Contributors

restonslacker avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

taber's Issues

Issue of lazy evaluation with dev magrittr

Hello, I'm seeing an issue with the development version of magrittr which switches to a lazy evaluation approach. It causes this error in your package:

> aframe <- data.frame(zed = runif(100))
> set_to_zero <- . %>% mutate(zed = 0)
> aframe %>% scion(zed >0.5, false_fun=set_to_zero) %>% mutate(zed=1) %>% graft
Error in .pop() : 
  No more scions on stack. Perhaps you meant to specify the "data2" argument to graft()?
Calls: %>% -> graft -> .pop

That's because the pipeline is now evaluated as if it were nested, instead of linearly:

graft(mutate(scion(aframe, zed > 0.5, false_fun = set_to_zero), zed = 1))

Because of lazy evaluation, the input to graft has not been evaluated yet when you check if data2 is missing. One way to fix this is to force() the input like this:

--- a/R/tabe.R
+++ b/R/tabe.R
@@ -62,6 +62,7 @@ scion <- function(.data, ..., false_fun, false_name, false_env){
 #' @importFrom dplyr intersect
 #' @importFrom dplyr full_join
 graft <- function(.data, combine_fun, data2){
+  force(.data)
   if(missing(data2))
     data2 <- .pop()

We're planning to release magrittr in one month. It'd be great if you could update your package :)

Note that the future native pipe in the next version of R will use this same approach, so by fixing your package for the new magrittr behaviour you'll make it usable with the native pipe as well.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.