Skip to content

Tag: pandas

Trouble With SQL Query in Python

Hello I’m getting an error: near “join”: syntax error. Is there an obvious issue with this that I’m not picking up on? I’ve changed names in the query but I’ve gone over and checked for spelling errors already. Answer In SQL, the order of clauses is SELECT, FROM, JOIN, WHER…

Dropping rows at specific minutes

I am trying to drop rows at specific minutes ( 05,10, 20 ) I have datetime as an index Then I run below it returnes invalid syntax error. Answer You can just do it using boolean indexing, assuming that the index is already parsed as datetime. Or the opposite of the same answer:

How to efficiently do operation on pandas each group

So I have a data frame like this– What I am doing is grouping by id and doing rolling operation on the delay column like below– It is working just fine but I am curious whether .apply on grouped data frame is vectorized or not. Since my dataset is huge, is there a better-vectorized way to do this …