Commit graph

5 commits

Author SHA1 Message Date
Richard Frank
61e472477b TST: Skip pipeline categorical tests under new pandas
Categoricals changed in 0.19
2018-07-10 11:19:02 -04:00
Ana Ruelas
a88df2be0d ENH: Add run_chunked_pipeline method to PipelineEngine 2017-06-02 16:48:09 -04:00
Ana Ruelas
897de69a2c ENH: Add function to concatenate list of dataframes with categoricals
STY: Alphabetized import list
2017-06-02 16:47:37 -04:00
Eddie Hebert
9f60524e14 STY: Use def statements instead of lambda assignment. (#1639)
From pep-0008:

```
Always use a def statement instead of an assignment statement that binds a
lambda expression directly to an identifier.

Yes:

def f(x): return 2*x
No:

f = lambda x: 2*x

The first form means that the name of the resulting function object is
specifically 'f' instead of the generic '<lambda>'. This is more useful for
tracebacks and string representations in general. The use of the assignment
statement eliminates the sole benefit a lambda expression can offer over an
explicit def statement (i.e. that it can be embedded inside a larger expression)
```
2017-01-06 13:39:07 -05:00
Scott Sanderson
6ac8046498 MAINT: Add nearest_unequal_elements.. 2016-08-17 16:52:09 -04:00