Filter elements in other dataframe #1669
-
Hi.
Every dataframe has only one column
But I'm not sure it is efficient at all. Also I tried to use a combined dataframe, but it uses nest_asyncio after that. nest_asyncio uses python only implementation of asyncio loop, incompatible with uvloop, and it's not unacceptable for my applications. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi, we should warn that this is mixing dataframes, which happens to work because the names of the dataframes are the same. You can do a join, without a key, which will join based on row number (which takes 0 time), and then filter. Does this help? cheers, Maarten
What is this? I'm thinking about avoiding nest_asyncio, see #1546 and spyder-ide/spyder#16183 for discussions on this. |
Beta Was this translation helpful? Give feedback.
Hi,
we should warn that this is mixing dataframes, which happens to work because the names of the dataframes are the same. You can do a join, without a key, which will join based on row number (which takes 0 time), and then filter.
Does this help?
cheers,
Maarten
What is this?
I'm thinking about avoiding nest_asyncio, see #1546 and spyder-ide/spyder#16183 for discussions on this.