├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── from_github.R ├── function_graph.R ├── get_fcn_lines_info.R ├── pkg_api.R ├── pkgattrs.R ├── utils-pipe.R ├── utils.R ├── write_pkg_api.R └── zzz.R ├── README.Rmd ├── README.md ├── appveyor.yml ├── man ├── figures │ ├── pointblank_graph_single.png │ └── stationary_graph_all.png ├── from_github.Rd ├── function_graph_all.Rd ├── function_graph_single.Rd ├── pipe.Rd ├── pkg_api.Rd ├── pkgattrs.Rd └── write_pkg_api.Rd ├── pkg_api └── pkgattrs.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-iannone/pkgattrs/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-iannone/pkgattrs/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-iannone/pkgattrs/HEAD/.travis.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-iannone/pkgattrs/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-iannone/pkgattrs/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2019 2 | COPYRIGHT HOLDER: Richard Iannone 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-iannone/pkgattrs/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-iannone/pkgattrs/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-iannone/pkgattrs/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/from_github.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-iannone/pkgattrs/HEAD/R/from_github.R -------------------------------------------------------------------------------- /R/function_graph.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-iannone/pkgattrs/HEAD/R/function_graph.R -------------------------------------------------------------------------------- /R/get_fcn_lines_info.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-iannone/pkgattrs/HEAD/R/get_fcn_lines_info.R -------------------------------------------------------------------------------- /R/pkg_api.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-iannone/pkgattrs/HEAD/R/pkg_api.R -------------------------------------------------------------------------------- /R/pkgattrs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-iannone/pkgattrs/HEAD/R/pkgattrs.R -------------------------------------------------------------------------------- /R/utils-pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-iannone/pkgattrs/HEAD/R/utils-pipe.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-iannone/pkgattrs/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/write_pkg_api.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-iannone/pkgattrs/HEAD/R/write_pkg_api.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-iannone/pkgattrs/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-iannone/pkgattrs/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-iannone/pkgattrs/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-iannone/pkgattrs/HEAD/appveyor.yml -------------------------------------------------------------------------------- /man/figures/pointblank_graph_single.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-iannone/pkgattrs/HEAD/man/figures/pointblank_graph_single.png -------------------------------------------------------------------------------- /man/figures/stationary_graph_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-iannone/pkgattrs/HEAD/man/figures/stationary_graph_all.png -------------------------------------------------------------------------------- /man/from_github.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-iannone/pkgattrs/HEAD/man/from_github.Rd -------------------------------------------------------------------------------- /man/function_graph_all.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-iannone/pkgattrs/HEAD/man/function_graph_all.Rd -------------------------------------------------------------------------------- /man/function_graph_single.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-iannone/pkgattrs/HEAD/man/function_graph_single.Rd -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-iannone/pkgattrs/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /man/pkg_api.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-iannone/pkgattrs/HEAD/man/pkg_api.Rd -------------------------------------------------------------------------------- /man/pkgattrs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-iannone/pkgattrs/HEAD/man/pkgattrs.Rd -------------------------------------------------------------------------------- /man/write_pkg_api.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-iannone/pkgattrs/HEAD/man/write_pkg_api.Rd -------------------------------------------------------------------------------- /pkg_api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-iannone/pkgattrs/HEAD/pkg_api -------------------------------------------------------------------------------- /pkgattrs.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rich-iannone/pkgattrs/HEAD/pkgattrs.Rproj --------------------------------------------------------------------------------