├── .Rbuildignore ├── .gitignore ├── .lintr ├── CODE_OF_CONDUCT.md ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── Agent.R └── LeadAgent.R ├── README.Rmd ├── README.md ├── cran-comments.md ├── man ├── Agent.Rd ├── LeadAgent.Rd └── figures │ ├── README-unnamed-chunk-21-1.png │ ├── README-unnamed-chunk-23-1.png │ └── mini007cute.png └── tests └── testthat └── test-agent.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feddelegrand7/mini007/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feddelegrand7/mini007/HEAD/.gitignore -------------------------------------------------------------------------------- /.lintr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feddelegrand7/mini007/HEAD/.lintr -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feddelegrand7/mini007/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feddelegrand7/mini007/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2025 2 | COPYRIGHT HOLDER: mini007 authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feddelegrand7/mini007/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feddelegrand7/mini007/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feddelegrand7/mini007/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/Agent.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feddelegrand7/mini007/HEAD/R/Agent.R -------------------------------------------------------------------------------- /R/LeadAgent.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feddelegrand7/mini007/HEAD/R/LeadAgent.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feddelegrand7/mini007/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feddelegrand7/mini007/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feddelegrand7/mini007/HEAD/cran-comments.md -------------------------------------------------------------------------------- /man/Agent.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feddelegrand7/mini007/HEAD/man/Agent.Rd -------------------------------------------------------------------------------- /man/LeadAgent.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feddelegrand7/mini007/HEAD/man/LeadAgent.Rd -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-21-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feddelegrand7/mini007/HEAD/man/figures/README-unnamed-chunk-21-1.png -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-23-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feddelegrand7/mini007/HEAD/man/figures/README-unnamed-chunk-23-1.png -------------------------------------------------------------------------------- /man/figures/mini007cute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feddelegrand7/mini007/HEAD/man/figures/mini007cute.png -------------------------------------------------------------------------------- /tests/testthat/test-agent.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feddelegrand7/mini007/HEAD/tests/testthat/test-agent.R --------------------------------------------------------------------------------