Skip to content

Instantly share code, notes, and snippets.

@aniruddha27
Last active June 28, 2020 17:44
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 aniruddha27/2d2126774f940e653e6b6437e48ee974 to your computer and use it in GitHub Desktop.
Save aniruddha27/2d2126774f940e653e6b6437e48ee974 to your computer and use it in GitHub Desktop.
# create a df containing sentence and its output for rule 2
row_list = []
for i in range(len(df3)):
sent = df3.loc[i,'Sent']
year = df3.loc[i,'Year']
# rule
output = rule2(sent)
dict1 = {'Year':year,'Sent':sent,'Output':output}
row_list.append(dict1)
df_rule2 = pd.DataFrame(row_list)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment