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

in R: A is not in df, but it can run df %>% mutate(A = a, B = A) but, df >> mutate(A = a, B = A) error: name...

Can I use `%in%` operator in dfply framework? here is an example. ``` # Import import pandas as pd import numpy as np from dfply import * # Create data...

The new pandas version is no longer supported df.ix[],so i use df.iloc[] instead

I am trying to run a python script, but this issue is popping up for me when running it, any solutions on this problem? I have already installed Pillow library...

Hi! I have a dataframe with three variable: id, category and age. `df = pd.DataFrame({'id' : [1,2,3,4], 'category' : ['a', 'a', 'b', None], 'age': [12,54,67,89]})` I am performing a group_by...

Hi - this library is of course welcome to those of us who are functionally oriented and even moreso have familiarity with R's dplyr. This library is however evidently presently...

I have a pandas DataFrame that contains experiment results. The experiment setups are described via the `groupcols` columns (string, float and integer columns) and the evaluation with the `eval_val` column...

Hi , I always have several error message, I don't know why . ``` from dfply import * from dfply.group import group_by #equivalent R dplyr stat_logiso = select_chpsfinal >> group_by(X.Code_BSS,...

Hello all. I understand this isn't the most bristling-with-activity project, but -- coming at it from the perspective of a Python tinkerer who's fallen in love with R's tidyverse --...

Hi, I found the orientation of renaming the columns counter intuitive in rename(CUT=X.cut, COLOR='color') "column name wanted" = "old column name" "old column name" = "column name wanted" best Simon