To help us help you, could you please prepare a reproducible example (reprex) illustrating your issue? Please have a look at this guide, to see how to create one:
Ok. I am trying to download edgar filings which downloads the files from the website (using the edgar package in R).
I run the following code:
install.packages("edgar")
library(edgar)
for (year in c(2004,2005,2006,2007,2008,2009,2010,2010,2011,2012,2013,2014,2015,2016,2017)){
getMasterIndex(year)
}
report <- getFilings(2017, 1720635 , 'ALL')
after running the above code, I have the following error:
Error: Input year(s) is not numeric.
Perhaps, the version has been updated recently and there were some breaking changes in the order of the arguments.
If your question's been answered (even by you!), would you mind choosing a solution? It helps other people see which questions still need help, or find solutions if they have similar problems. Here’s how to do it: