In [2]:
import matplotlib.pyplot as plt
from p2arxivsearch import *
%matplotlib inline
#Using the functions
'''
maxresults=5
dates_novel=finddate(readarxiv_title('novel',maxresults))
dates_revisit=finddate(readarxiv_title('novel',maxresults))
print(dates_revisit)
'''
#Search for specific author
data=readarxiv_author('Kouwenhoven_L',100)
abswcount=abstract_word_count(data)
print (abswcount)
#plot the data as
plt.hist(abswcount)
plt.xlabel("number of words in abstract")
plt.ylabel("number of papers")
Out[2]:
In [ ]:
In [ ]: