Created
June 8, 2020 09:24
-
-
Save aniruddha27/8257cbf925267aa58641d9ce57cbef8a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# create a df containing sentence and its output for rule 2 | |
row_list = [] | |
# df2 contains all the sentences from all the speeches | |
for i in range(len(df2)): | |
sent = df2.loc[i,'Sent'] | |
year = df2.loc[i,'Year'] | |
output = rule2(sent) | |
dict1 = {'Year':year,'Sent':sent,'Output':output} | |
row_list.append(dict1) | |
df_rule2_all = pd.DataFrame(row_list) | |
# check rule output on complete speeches | |
output_per(df_rule2_all,'Output') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment