In [2]:
import pandas as pd
coauthors = pd.read_csv('coauthors.csv')
coauthors.head()
Out[2]:
In [ ]:
myfirst, mylast = 'Olga Borisvona', 'Botvinnik'
texts = {'published': '{myfirst} {mylast} has my permission to include the following paper,'
' of which I was a co-author, in her doctoral dissertation.',
'submitted': '{myfirst} {mylast} has my permission to include the following paper '
'which was submitted for publication, of which I was a co-author, in her doctoral dissertation.',
'in preparation': '{myfirst} {mylast} has my permission to include material, currently '
'being prepared for submission for publication, of which I was a co-author, in her doctoral dissertation'}
for coauthor, df in coauthors.groupby('name'):
for status, i, paper in df.iterrows():