├── .Rbuildignore ├── .gitattributes ├── .github ├── .gitignore ├── FUNDING.yaml └── workflows │ └── check-standard.yaml ├── .gitignore ├── CONDUCT.md ├── CRAN-SUBMISSION ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── aaa.R ├── generate-random-planets.R ├── ggsolar-package.R ├── orbits.R ├── plot-orbits.R ├── randomize-planet-positions.R └── theme-enhance-solar.R ├── README.Rmd ├── README.md ├── cran-comments.md ├── ggsolar.Rproj ├── inst └── tinytest │ └── test_ggsolar.R ├── man ├── figures │ ├── README-rando-1.png │ ├── README-sol-1.png │ ├── README-sol-precise-sqrt-1.png │ └── README-sol-sqrt-1.png ├── generate_orbits.Rd ├── generate_random_planets.Rd ├── ggsolar.Rd ├── plot_orbits.Rd ├── randomize_planet_positions.Rd ├── scaffold_planet_plot.Rd ├── sol_planets.Rd └── theme_enhance_solar.Rd └── tests └── tinytest.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yaml: -------------------------------------------------------------------------------- 1 | github: hrbrmstr 2 | -------------------------------------------------------------------------------- /.github/workflows/check-standard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/.github/workflows/check-standard.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/.gitignore -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /CRAN-SUBMISSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/CRAN-SUBMISSION -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2023 2 | COPYRIGHT HOLDER: ggsolar authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/aaa.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/R/aaa.R -------------------------------------------------------------------------------- /R/generate-random-planets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/R/generate-random-planets.R -------------------------------------------------------------------------------- /R/ggsolar-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/R/ggsolar-package.R -------------------------------------------------------------------------------- /R/orbits.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/R/orbits.R -------------------------------------------------------------------------------- /R/plot-orbits.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/R/plot-orbits.R -------------------------------------------------------------------------------- /R/randomize-planet-positions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/R/randomize-planet-positions.R -------------------------------------------------------------------------------- /R/theme-enhance-solar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/R/theme-enhance-solar.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/cran-comments.md -------------------------------------------------------------------------------- /ggsolar.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/ggsolar.Rproj -------------------------------------------------------------------------------- /inst/tinytest/test_ggsolar.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/inst/tinytest/test_ggsolar.R -------------------------------------------------------------------------------- /man/figures/README-rando-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/man/figures/README-rando-1.png -------------------------------------------------------------------------------- /man/figures/README-sol-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/man/figures/README-sol-1.png -------------------------------------------------------------------------------- /man/figures/README-sol-precise-sqrt-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/man/figures/README-sol-precise-sqrt-1.png -------------------------------------------------------------------------------- /man/figures/README-sol-sqrt-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/man/figures/README-sol-sqrt-1.png -------------------------------------------------------------------------------- /man/generate_orbits.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/man/generate_orbits.Rd -------------------------------------------------------------------------------- /man/generate_random_planets.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/man/generate_random_planets.Rd -------------------------------------------------------------------------------- /man/ggsolar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/man/ggsolar.Rd -------------------------------------------------------------------------------- /man/plot_orbits.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/man/plot_orbits.Rd -------------------------------------------------------------------------------- /man/randomize_planet_positions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/man/randomize_planet_positions.Rd -------------------------------------------------------------------------------- /man/scaffold_planet_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/man/scaffold_planet_plot.Rd -------------------------------------------------------------------------------- /man/sol_planets.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/man/sol_planets.Rd -------------------------------------------------------------------------------- /man/theme_enhance_solar.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/man/theme_enhance_solar.Rd -------------------------------------------------------------------------------- /tests/tinytest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/ggsolar/HEAD/tests/tinytest.R --------------------------------------------------------------------------------