EDGAR Filing Data Analysis – An Introduction with Pandas
Edgar can be used to analyse the financials of a single company over time. However, we try to get an overall picture of the profits over all companies. For this we use the Python Data Analysis Library Pandas and my simple Edgar REST API. In [199]: import pandas import matplotlib.pyplot as plt Profits by Country¶ We can get a quick overview with the help of the follwing REST get request. We ask for countries by year Read more…