├── .Rbuildignore ├── .github └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── data.R ├── fhs.R ├── functions_OLD.R ├── functions_chr_int.R ├── gate_app.R ├── gatepoints.R ├── methods.R ├── nanny.R └── utilities.R ├── README.Rmd ├── README.md ├── cran-comments.md ├── data ├── demo_gate_data.rda ├── gate_list.rda └── tidygate_data.rda ├── man ├── .DS_Store ├── add_attr.Rd ├── demo_gate_data.Rd ├── fhs.Rd ├── figures │ ├── .DS_Store │ └── demo_gate.gif ├── gate.Rd ├── gate_chr-methods.Rd ├── gate_chr.numeric.Rd ├── gate_int.numeric.Rd ├── gate_interactive.Rd ├── gate_interactive_chr_int.Rd ├── gate_interactive_old.Rd ├── gate_list.Rd ├── gate_programmatic.Rd ├── gate_programmatic_chr_int.Rd ├── gate_programmatic_old.Rd ├── quo_names.Rd ├── server.Rd ├── tidygate_data.Rd └── ui.Rd ├── tests ├── testthat.R └── testthat │ └── test-methods.R └── vignettes └── introdution.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/R/data.R -------------------------------------------------------------------------------- /R/fhs.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/R/fhs.R -------------------------------------------------------------------------------- /R/functions_OLD.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/R/functions_OLD.R -------------------------------------------------------------------------------- /R/functions_chr_int.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/R/functions_chr_int.R -------------------------------------------------------------------------------- /R/gate_app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/R/gate_app.R -------------------------------------------------------------------------------- /R/gatepoints.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/R/gatepoints.R -------------------------------------------------------------------------------- /R/methods.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/R/methods.R -------------------------------------------------------------------------------- /R/nanny.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/R/nanny.R -------------------------------------------------------------------------------- /R/utilities.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/R/utilities.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/demo_gate_data.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/data/demo_gate_data.rda -------------------------------------------------------------------------------- /data/gate_list.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/data/gate_list.rda -------------------------------------------------------------------------------- /data/tidygate_data.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/data/tidygate_data.rda -------------------------------------------------------------------------------- /man/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/man/.DS_Store -------------------------------------------------------------------------------- /man/add_attr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/man/add_attr.Rd -------------------------------------------------------------------------------- /man/demo_gate_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/man/demo_gate_data.Rd -------------------------------------------------------------------------------- /man/fhs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/man/fhs.Rd -------------------------------------------------------------------------------- /man/figures/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/man/figures/.DS_Store -------------------------------------------------------------------------------- /man/figures/demo_gate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/man/figures/demo_gate.gif -------------------------------------------------------------------------------- /man/gate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/man/gate.Rd -------------------------------------------------------------------------------- /man/gate_chr-methods.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/man/gate_chr-methods.Rd -------------------------------------------------------------------------------- /man/gate_chr.numeric.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/man/gate_chr.numeric.Rd -------------------------------------------------------------------------------- /man/gate_int.numeric.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/man/gate_int.numeric.Rd -------------------------------------------------------------------------------- /man/gate_interactive.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/man/gate_interactive.Rd -------------------------------------------------------------------------------- /man/gate_interactive_chr_int.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/man/gate_interactive_chr_int.Rd -------------------------------------------------------------------------------- /man/gate_interactive_old.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/man/gate_interactive_old.Rd -------------------------------------------------------------------------------- /man/gate_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/man/gate_list.Rd -------------------------------------------------------------------------------- /man/gate_programmatic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/man/gate_programmatic.Rd -------------------------------------------------------------------------------- /man/gate_programmatic_chr_int.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/man/gate_programmatic_chr_int.Rd -------------------------------------------------------------------------------- /man/gate_programmatic_old.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/man/gate_programmatic_old.Rd -------------------------------------------------------------------------------- /man/quo_names.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/man/quo_names.Rd -------------------------------------------------------------------------------- /man/server.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/man/server.Rd -------------------------------------------------------------------------------- /man/tidygate_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/man/tidygate_data.Rd -------------------------------------------------------------------------------- /man/ui.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/man/ui.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-methods.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/tests/testthat/test-methods.R -------------------------------------------------------------------------------- /vignettes/introdution.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemangiola/tidygate/HEAD/vignettes/introdution.Rmd --------------------------------------------------------------------------------