dfply icon indicating copy to clipboard operation
dfply copied to clipboard

dplyr-style piping operations for pandas dataframes

Results 41 dfply issues
Sort by recently updated
recently updated
newest added

I can confirm in 0.3.3, issue still same _Originally posted by @steer629 in https://github.com/kieferk/dfply/issues/61#issuecomment-454780416_

Hi, thank you for all the good work here, I like this the best of the dplyr clones. In R I am able to do something like, `df %>% mutate(newcol...

The function get_join_parameters in join.py has an error: if not isinstance(by[0], str): left_on = by[0] right_in = by[1] This should be right_on = by[1]. Great library btw - I really...

I am not able to call any of the functions in dfply package. The package has been imported and installed. I am using python 3.0 in JupyterLab notebook. ![image](https://user-images.githubusercontent.com/30272987/38148366-d12f18b2-341b-11e8-8e31-3b305fffe9d1.png)

Hi, I am an avid dplyr user in R and somewhat new to python. I have been looking for a dplyr-like package in python for a while when I came...

Guys, How to filter multiple values from same column, Below code throws the error. import pandas as pd from dfply import * data = pd.DataFrame({"Col1" :["a","b","c","d"],"Col2":[1,2,3,4]}) data >> mask(X.Col1 ==...

for some reasons, I have a very complicate excel be read into pandas, some column names are with blank, i.e "Commercial Project-ID", target_data_frame= orginal_data_frame >> mask(X.['Commercial Project-ID']==0) or target_data_frame= orginal_data_frame...

Last update is from August 2017. Pip version of the package currently doens't import the `filter_by` function, because it doesn't exist. #50

Head operator works well when the dataset was initially loaded. df >> head(5) - returned exactly 5 rows I applied a group_by on the dataframe and saved it to the...

On my development machine I installed dfply version 0.2.4. Now I installed dfply with `pip install dfply` on the server and suddenly I got `NameError: name 'groupby' is not defined`....