Zax
Zax
One implementation that could be borrowed from: https://github.com/pojx/tox-pyenv-install
I've hit the same error. Any chance we can get a fix for this? Thanks!
This will require comparing the state of the original df to the output df. For example: ``` df = pd.DataFrame({"a": [1, 2, 3], "b": [4, 5, 6]}) def sample_func(df): return...
Unfortunately there's not currently a way to do this flexibly with decorators. Right now the easiest way would be to use the check function version: ``` def foo(date: datetime.date) ->...
Thanks for this. Didn't want you to think I didn't see this, but I'm not going to have a chance to review/merge until tomorrow or Sunday.
Sorry this fell off my radar. I just merged a PR that fixed a few of these typos, but a couple weren't in the other PR. If you want to...
Example of making the locations a string, so it can be combined with another string message provided by the calling function: ``` def bad_locations(df): """Indicates bad cells in `df`.""" columns...
Are (index, column) tuples the best output? It doesn't help the user take next steps debugging. My next step would likely be to investigate all the values in the bad...
Can you show a before and after for the above example, so I'm clear on this? Also, will this be a breaking change?
Do you have a real world example of when you'd actually want a function to accept or output a tuple of dataframes? Generally it's considered bad practice to output a...