Skip to content

Do you support two DataFrame operations now? #83

Answered by shaypal5
banduoba asked this question in Q&A
Discussion options

You must be logged in to vote

Processing two dataframes

If one of the dataframes is an input dataframe to a pipeline, and the other is either a static one, or is completely derived from the input, then yes - pdpipe is adequate.

If, on the other hand, both dataframes are input dataframes to a pipeline, then no, currently pdpipe is not built to handle just joint operations. This is because it's really not clear how to streamline such pipelines. I have some ideas, but this requires basically multi-input pipelines that must have some merge/join stages, and possibly multiple outputs.

Using the fillna method

Regarding your second question, pdpipe.df.fillna() actually works great:

>>> import pandas as pd; import pdpipe as pdp;…

Replies: 9 comments 2 replies

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by shaypal5
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
2 replies
@banduoba
Comment options

@shaypal5
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
2 participants
Converted from issue

This discussion was converted from issue #76 on January 15, 2022 17:50.