Skip to content

Instantly share code, notes, and snippets.

@Coldsp33d
Created June 28, 2019 23:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save Coldsp33d/becf21955793bbc23bedd66fc92367d1 to your computer and use it in GitHub Desktop.
Save Coldsp33d/becf21955793bbc23bedd66fc92367d1 to your computer and use it in GitHub Desktop.
import pandas as pd
import perfplot
def numpy_where(df):
return df.assign(is_rich=np.where(df['salary'] >= 50, 'yes', 'no'))
def list_comp(df):
return df.assign(is_rich=['yes' if x >= 50 else 'no' for x in df['salary']])
def loc(df):
df = df.assign(is_rich='no')
df.loc[df['salary'] > 50, 'is_rich'] = 'yes'
return df
kernels = [numpy_where, list_comp, loc]
df = pd.DataFrame({
'age' : [21, 45, 45, 5],
'salary' : [20, 40, 10, 100]
})
perfplot.show(
setup=lambda n: pd.concat([df] * n, ignore_index=True),
kernels=kernels,
labels=[f.__name__ for f in kernels],
n_range=[2**k for k in range(0, 20)],
logx=True,
logy=True,
xlabel='N',
equality_check=pd.DataFrame.equals)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment