Skip to content

Instantly share code, notes, and snippets.

@guerbai
Created June 2, 2019 05:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save guerbai/e8621b9a00b05c98463c0900c50e9f3c to your computer and use it in GitHub Desktop.
Save guerbai/e8621b9a00b05c98463c0900c50e9f3c to your computer and use it in GitHub Desktop.
将分数一栏转化为star数 #Pandas
def stars(row):
if row.country == 'Canada':
return 3
elif row.points >= 95:
return 3
elif row.points >= 85:
return 2
else:
return 1
star_ratings = reviews.apply(stars, axis='columns')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment