- add unzip_faers()
- Create
read_faers()
function, which includes allread_*()
function (with * in {demo
,drug
,indi
,outc
,reac
,rpsr
, andther
}) - Now
faers_*()
import FAERS data before 2014Q4 in the same structure as FAERS data from 2014Q4 - Now
faers_*()
create a new coloum, "period", with year and quarter throughtperiod_from_path()
- create
period_from_path()
function in order to extract year and quarter from FAERS db path. - added
\dontrun{}
to examples with side effects. - rename and refactor
list_of_faers_year()
intoyears_from_faers_html()
- refactored
fetch_faers_meta()
andyears_from_faers_html()
to have in input the FAERS' meta html. This way it is possible to download the HTML only once. - rename and refactor
import faers_html()
intocurrent_faers_html()
to directly access tocurrent_faers_meta_url()
. - rename and refactor
list_of_faers_data
intofetch_faers_meta()
. Now it always return atible
, using fixed internal parametrization for FAERS meta-data URL. Internal computational service function are extracted and tested. - refactor
compose_faers_link()
with the updatedis_year_quarter_available()
. - rename and refactor
check_year
intois_year_quarter_available()
to always return booleans and check against real FAERS data (using quarter too). - added a function to download FAERS data.
- added
.lintr
to set the default linters. - added development skeleton
dev/02-development.R
. - added
read_*()
(with * in {demo
,drug
,indi
,outc
,reac
,rpsr
, andther
}) functions to read FAERS raw data into tibbles. - added
.lintr
to set the default linters - added development skeleton
dev/02-development.R
- Added support to use the pipe (
|>
) operator. - Added GitHub action for CI/CD automating lint, coverage, tests, and checks.
- Added support from
{renv}
package management system for reproducibility of all the results. - Added instructions for contributions and getting help in the
README.Rmd
and added them in the GitHub templates (including issues). - Added support for unit test powered by the
{testthat}
package. - Added support for potentially useful raw data to include in the
package: created and
.Rbuildignore
d thedata-raw/
folder. - Added support for spellcheck powered by the
{spelling}
package. - Added a
README.Rmd
file to produceREADME.md
, i.e., the project's home page. - Added a
NEWS.md
file to track changes to the package.