├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── NEWS ├── NEWS.md ├── R ├── pmApi2df.R ├── pmApiRequest.R └── pmQueryTotalCount.R ├── README.md ├── man ├── pmApi2df.Rd ├── pmApiRequest.Rd └── pmQueryTotalCount.Rd └── vignettes ├── A_Brief_Example.R ├── A_Brief_Example.Rmd └── A_Brief_Example.html /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimoaria/pubmedR/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimoaria/pubmedR/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimoaria/pubmedR/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimoaria/pubmedR/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimoaria/pubmedR/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimoaria/pubmedR/HEAD/NEWS -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimoaria/pubmedR/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/pmApi2df.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimoaria/pubmedR/HEAD/R/pmApi2df.R -------------------------------------------------------------------------------- /R/pmApiRequest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimoaria/pubmedR/HEAD/R/pmApiRequest.R -------------------------------------------------------------------------------- /R/pmQueryTotalCount.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimoaria/pubmedR/HEAD/R/pmQueryTotalCount.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimoaria/pubmedR/HEAD/README.md -------------------------------------------------------------------------------- /man/pmApi2df.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimoaria/pubmedR/HEAD/man/pmApi2df.Rd -------------------------------------------------------------------------------- /man/pmApiRequest.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimoaria/pubmedR/HEAD/man/pmApiRequest.Rd -------------------------------------------------------------------------------- /man/pmQueryTotalCount.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimoaria/pubmedR/HEAD/man/pmQueryTotalCount.Rd -------------------------------------------------------------------------------- /vignettes/A_Brief_Example.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimoaria/pubmedR/HEAD/vignettes/A_Brief_Example.R -------------------------------------------------------------------------------- /vignettes/A_Brief_Example.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimoaria/pubmedR/HEAD/vignettes/A_Brief_Example.Rmd -------------------------------------------------------------------------------- /vignettes/A_Brief_Example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/massimoaria/pubmedR/HEAD/vignettes/A_Brief_Example.html --------------------------------------------------------------------------------