Skip to content

Instantly share code, notes, and snippets.

@IyarLin
Last active June 24, 2020 08:42
Show Gist options
  • Save IyarLin/c7e7d1de5855a35a1caf04b1d6b8c88b to your computer and use it in GitHub Desktop.
Save IyarLin/c7e7d1de5855a35a1caf04b1d6b8c88b to your computer and use it in GitHub Desktop.
python snippets
import pandas as pd
def filter_(df, f):
return df[f(df)]
pd.DataFrame.filter_ = filter_
import os
abspath = os.path.abspath("analysis script.py")
dname = os.path.dirname(abspath)
os.chdir(dname)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment