├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── test-coverage.yaml ├── .gitignore ├── CITATION.cff ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── main.R └── package.R ├── README.Rmd ├── README.md ├── codemeta.json ├── fisheye.Rproj ├── inst └── tinytest │ └── test_fisheye.R ├── man ├── figures │ ├── README-example-1.png │ ├── README-example-2.png │ ├── README-example2-1.png │ ├── README-example2-2.png │ ├── README-unnamed-chunk-2-1.png │ ├── README-unnamed-chunk-2-2.png │ ├── fig.jpg │ └── logo.png ├── fisheye-package.Rd └── fisheye.Rd └── tests └── tinytest.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/fisheye/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/fisheye/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/fisheye/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/fisheye/HEAD/.gitignore -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/fisheye/HEAD/CITATION.cff -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/fisheye/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/fisheye/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- 1 | # fisheye 0.2.0 2 | 3 | - update docs and links 4 | -------------------------------------------------------------------------------- /R/main.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/fisheye/HEAD/R/main.R -------------------------------------------------------------------------------- /R/package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/fisheye/HEAD/R/package.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/fisheye/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/fisheye/HEAD/README.md -------------------------------------------------------------------------------- /codemeta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/fisheye/HEAD/codemeta.json -------------------------------------------------------------------------------- /fisheye.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/fisheye/HEAD/fisheye.Rproj -------------------------------------------------------------------------------- /inst/tinytest/test_fisheye.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/fisheye/HEAD/inst/tinytest/test_fisheye.R -------------------------------------------------------------------------------- /man/figures/README-example-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/fisheye/HEAD/man/figures/README-example-1.png -------------------------------------------------------------------------------- /man/figures/README-example-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/fisheye/HEAD/man/figures/README-example-2.png -------------------------------------------------------------------------------- /man/figures/README-example2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/fisheye/HEAD/man/figures/README-example2-1.png -------------------------------------------------------------------------------- /man/figures/README-example2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/fisheye/HEAD/man/figures/README-example2-2.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/fisheye/HEAD/man/figures/README-unnamed-chunk-2-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/fisheye/HEAD/man/figures/README-unnamed-chunk-2-2.png -------------------------------------------------------------------------------- /man/figures/fig.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/fisheye/HEAD/man/figures/fig.jpg -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/fisheye/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/fisheye-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/fisheye/HEAD/man/fisheye-package.Rd -------------------------------------------------------------------------------- /man/fisheye.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/fisheye/HEAD/man/fisheye.Rd -------------------------------------------------------------------------------- /tests/tinytest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/riatelab/fisheye/HEAD/tests/tinytest.R --------------------------------------------------------------------------------