Skip to content

Instantly share code, notes, and snippets.

@kvnkho
Last active February 11, 2022 04:17
Show Gist options
  • Select an option

  • Save kvnkho/a77bb7da61394ab5be2d10df999f5e2f to your computer and use it in GitHub Desktop.

Select an option

Save kvnkho/a77bb7da61394ab5be2d10df999f5e2f to your computer and use it in GitHub Desktop.
def map_letter_to_food(df: pd.DataFrame, mapping: Dict) -> pd.DataFrame:
df["food"] = df["value"].map(mapping)
return df
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment