Chris Riederer
Chris Riederer
Code for getting python 3 and python 2 sklearn pickles to play nicely.
`if_else` should take broadcastable things, much like np.where does. Perhaps if_else should just be DelayFunction version of np.where
I updated the README to include a video, and now the build is broken on a seemingly unrelated issue. My first guess is that something changed in pandas to make...
This is a note mainly for me. Well, also for you to see, which will pressure me to do it quickly so I am not embarrassed by not having done...
`transmute` and `select` do very similar things: create a smaller dataframe that is just a few derived columns from the current one. The different between `transmute` and `select` is a...
Some external functions might enter an infinite loop when called incorrectly with `Later` arguments. For example, calling `zip` with `Later` arguments appears to enter one of these loops. It would...
Since dplython deals with large dataset, it's important to make sure performance is as high as possible. To that end, we should set up benchmarks to see where our speed...
Currently, users can use functions with `Later` objects by decorating them / calling them with `DelayFunction`. It would be nice to have a module that calls `DelayFunction` on everything callable...
Currently, dplython copies a new DataFrame whenever `>>` is used. The goal of this is to prevent dplython from inadvertently altering the contents of the original DataFrame when executing operations....
We have already differed from dplyr by using `sift` instead of `filter`. `mutate` seems like a misnomer-- we're not mutating an existing column, but rather we're adding a new column....