Charles Simchick

Results 7 comments of Charles Simchick

I'll have a look. On Sun, Aug 4, 2019 at 12:37 PM Jacob Deppen wrote: > @simchuck , any interest in revisiting this? > Once the off-by-default framework (#69 >...

Both of the anti-patterns have `df.groupby('group_col')['agg_col'] ... `, which we should be able to identify with the following check: ``` if isinstance(node.func.value, ast.Subscript) and node.func.value.value.func.attr == 'group_by' ``` (AST chains...

Turns out the AST syntax is actually more complex when the `.agg()` method is chained. But the fundamental pattern should still be the same -- we want to check for...

Okay. I have a preliminary commit that I will probably push and create a pull request, if only as a reference for discussion of the implementation. Although if following strictly...

I am planning to look into the github dataset on Google BigQuery. If I can make sense of it, it should hopefully be straightforward to run a query to search...

Could you also scan the file for multiple pandas "signatures", rather than relying on an explicit import statement? Might be able to check existing code using pandas to determine the...

Is it possible to collect any `pandas` DataFrame objects to an internal `dict` variable, then confirm the suspect object is in this `dict` before throwing the error code? I'm not...