├── .Rbuildignore ├── .Rhistory ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── R └── feathers.R ├── README.Rmd ├── README.md ├── README_files └── figure-gfm │ ├── bee-eater-2.png │ ├── bee-eater-3.png │ ├── bee_eater_pal-1.png │ ├── bfpf_pal-1.png │ ├── cassowary_pal-1.png │ ├── galah_pal-1.png │ ├── gouldian-2.png │ ├── gouldian-3.png │ ├── kookaburra_pal-1.png │ ├── oriole-2.png │ ├── oriole-3.png │ ├── oriole_pal-1.png │ ├── pdubs-1.png │ ├── pdubs-2.png │ ├── pdubs-3.png │ ├── princess-2.png │ ├── princess-3.png │ ├── princess_pal-1.png │ ├── rcf_dove_pal-1.png │ ├── rosella-2.png │ ├── rosella-3.png │ ├── rosella_img-1.png │ ├── rosella_pal-1.png │ ├── spotty-2.png │ ├── spotty-3.png │ ├── spotty_pal-1.png │ ├── superb_fw_pal-1.png │ ├── sweetpea-2.png │ ├── sweetpea-3.png │ ├── unnamed-chunk-10-1.png │ ├── unnamed-chunk-10-2.png │ ├── unnamed-chunk-11-1.png │ ├── unnamed-chunk-11-2.png │ ├── unnamed-chunk-12-1.png │ ├── unnamed-chunk-12-2.png │ ├── unnamed-chunk-13-1.png │ ├── unnamed-chunk-13-2.png │ ├── unnamed-chunk-14-1.png │ ├── unnamed-chunk-14-2.png │ ├── unnamed-chunk-15-1.png │ ├── unnamed-chunk-15-2.png │ ├── unnamed-chunk-16-1.png │ ├── unnamed-chunk-16-2.png │ ├── unnamed-chunk-17-1.png │ ├── unnamed-chunk-17-2.png │ ├── unnamed-chunk-18-1.png │ ├── unnamed-chunk-18-2.png │ ├── unnamed-chunk-19-1.png │ ├── unnamed-chunk-20-1.png │ ├── unnamed-chunk-21-1.png │ ├── unnamed-chunk-22-1.png │ ├── unnamed-chunk-22-2.png │ ├── unnamed-chunk-23-1.png │ ├── unnamed-chunk-24-1.png │ ├── unnamed-chunk-25-1.png │ ├── unnamed-chunk-26-1.png │ ├── unnamed-chunk-27-1.png │ ├── unnamed-chunk-28-1.png │ ├── unnamed-chunk-5-1.png │ ├── unnamed-chunk-6-1.png │ ├── unnamed-chunk-6-2.png │ ├── unnamed-chunk-7-1.png │ ├── unnamed-chunk-7-2.png │ ├── unnamed-chunk-7-3.png │ ├── unnamed-chunk-8-1.png │ ├── unnamed-chunk-8-2.png │ ├── unnamed-chunk-9-1.png │ ├── unnamed-chunk-9-2.png │ ├── wanderer_pal-1.png │ └── yellow_robin_pal-1.png ├── feathers.Rproj ├── figure ├── unnamed-chunk-5-1.png ├── unnamed-chunk-6-1.png └── unnamed-chunk-7-1.png ├── images ├── bee_eater_img.png ├── bee_eater_plot.png ├── blue_winged_kookaburra_img.png ├── blue_winged_kookaburra_plot.png ├── cassowary_img.png ├── cassowary_plot.png ├── eastern_rosella_img.png ├── eastern_rosella_plot.png ├── galah_img.png ├── galah_plot.png ├── generate_images.R ├── oriole_img.png ├── oriole_plot.png ├── plains_wanderer_img.png ├── plains_wanderer_plot.png ├── princess_parrot_plot.png ├── rose_crowned_fruit_dove_img.png ├── rose_crowned_fruit_dove_plot.png ├── spotted_pardalote_img.png ├── spotted_pardalote_plot.png ├── superb_fairy_wren_img.png ├── superb_fairy_wren_plot.png ├── yellow_robin_img.png └── yellow_robin_plot.png ├── man ├── feathers_palettes.Rd ├── get_pal.Rd └── print_pal.Rd └── rsconnect └── documents └── README.Rmd └── rpubs.com └── rpubs └── Document.dcf /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/.Rhistory -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2021 2 | COPYRIGHT HOLDER: Shandiya Balasubramaniam 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/feathers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/R/feathers.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README.md -------------------------------------------------------------------------------- /README_files/figure-gfm/bee-eater-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/bee-eater-2.png -------------------------------------------------------------------------------- /README_files/figure-gfm/bee-eater-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/bee-eater-3.png -------------------------------------------------------------------------------- /README_files/figure-gfm/bee_eater_pal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/bee_eater_pal-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/bfpf_pal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/bfpf_pal-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/cassowary_pal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/cassowary_pal-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/galah_pal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/galah_pal-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/gouldian-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/gouldian-2.png -------------------------------------------------------------------------------- /README_files/figure-gfm/gouldian-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/gouldian-3.png -------------------------------------------------------------------------------- /README_files/figure-gfm/kookaburra_pal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/kookaburra_pal-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/oriole-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/oriole-2.png -------------------------------------------------------------------------------- /README_files/figure-gfm/oriole-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/oriole-3.png -------------------------------------------------------------------------------- /README_files/figure-gfm/oriole_pal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/oriole_pal-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/pdubs-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/pdubs-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/pdubs-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/pdubs-2.png -------------------------------------------------------------------------------- /README_files/figure-gfm/pdubs-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/pdubs-3.png -------------------------------------------------------------------------------- /README_files/figure-gfm/princess-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/princess-2.png -------------------------------------------------------------------------------- /README_files/figure-gfm/princess-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/princess-3.png -------------------------------------------------------------------------------- /README_files/figure-gfm/princess_pal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/princess_pal-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/rcf_dove_pal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/rcf_dove_pal-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/rosella-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/rosella-2.png -------------------------------------------------------------------------------- /README_files/figure-gfm/rosella-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/rosella-3.png -------------------------------------------------------------------------------- /README_files/figure-gfm/rosella_img-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/rosella_img-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/rosella_pal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/rosella_pal-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/spotty-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/spotty-2.png -------------------------------------------------------------------------------- /README_files/figure-gfm/spotty-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/spotty-3.png -------------------------------------------------------------------------------- /README_files/figure-gfm/spotty_pal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/spotty_pal-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/superb_fw_pal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/superb_fw_pal-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/sweetpea-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/sweetpea-2.png -------------------------------------------------------------------------------- /README_files/figure-gfm/sweetpea-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/sweetpea-3.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-10-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-10-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-10-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-10-2.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-11-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-11-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-11-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-11-2.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-12-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-12-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-12-2.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-13-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-13-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-13-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-13-2.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-14-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-14-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-14-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-14-2.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-15-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-15-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-15-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-15-2.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-16-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-16-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-16-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-16-2.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-17-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-17-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-17-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-17-2.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-18-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-18-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-18-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-18-2.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-19-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-19-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-20-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-20-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-21-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-21-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-22-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-22-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-22-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-22-2.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-23-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-23-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-24-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-24-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-25-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-25-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-26-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-26-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-27-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-27-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-28-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-28-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-6-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-6-2.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-7-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-7-2.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-7-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-7-3.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-8-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-8-2.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-9-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/unnamed-chunk-9-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/unnamed-chunk-9-2.png -------------------------------------------------------------------------------- /README_files/figure-gfm/wanderer_pal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/wanderer_pal-1.png -------------------------------------------------------------------------------- /README_files/figure-gfm/yellow_robin_pal-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/README_files/figure-gfm/yellow_robin_pal-1.png -------------------------------------------------------------------------------- /feathers.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/feathers.Rproj -------------------------------------------------------------------------------- /figure/unnamed-chunk-5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/figure/unnamed-chunk-5-1.png -------------------------------------------------------------------------------- /figure/unnamed-chunk-6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/figure/unnamed-chunk-6-1.png -------------------------------------------------------------------------------- /figure/unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/figure/unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /images/bee_eater_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/images/bee_eater_img.png -------------------------------------------------------------------------------- /images/bee_eater_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/images/bee_eater_plot.png -------------------------------------------------------------------------------- /images/blue_winged_kookaburra_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/images/blue_winged_kookaburra_img.png -------------------------------------------------------------------------------- /images/blue_winged_kookaburra_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/images/blue_winged_kookaburra_plot.png -------------------------------------------------------------------------------- /images/cassowary_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/images/cassowary_img.png -------------------------------------------------------------------------------- /images/cassowary_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/images/cassowary_plot.png -------------------------------------------------------------------------------- /images/eastern_rosella_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/images/eastern_rosella_img.png -------------------------------------------------------------------------------- /images/eastern_rosella_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/images/eastern_rosella_plot.png -------------------------------------------------------------------------------- /images/galah_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/images/galah_img.png -------------------------------------------------------------------------------- /images/galah_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/images/galah_plot.png -------------------------------------------------------------------------------- /images/generate_images.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/images/generate_images.R -------------------------------------------------------------------------------- /images/oriole_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/images/oriole_img.png -------------------------------------------------------------------------------- /images/oriole_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/images/oriole_plot.png -------------------------------------------------------------------------------- /images/plains_wanderer_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/images/plains_wanderer_img.png -------------------------------------------------------------------------------- /images/plains_wanderer_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/images/plains_wanderer_plot.png -------------------------------------------------------------------------------- /images/princess_parrot_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/images/princess_parrot_plot.png -------------------------------------------------------------------------------- /images/rose_crowned_fruit_dove_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/images/rose_crowned_fruit_dove_img.png -------------------------------------------------------------------------------- /images/rose_crowned_fruit_dove_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/images/rose_crowned_fruit_dove_plot.png -------------------------------------------------------------------------------- /images/spotted_pardalote_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/images/spotted_pardalote_img.png -------------------------------------------------------------------------------- /images/spotted_pardalote_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/images/spotted_pardalote_plot.png -------------------------------------------------------------------------------- /images/superb_fairy_wren_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/images/superb_fairy_wren_img.png -------------------------------------------------------------------------------- /images/superb_fairy_wren_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/images/superb_fairy_wren_plot.png -------------------------------------------------------------------------------- /images/yellow_robin_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/images/yellow_robin_img.png -------------------------------------------------------------------------------- /images/yellow_robin_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/images/yellow_robin_plot.png -------------------------------------------------------------------------------- /man/feathers_palettes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/man/feathers_palettes.Rd -------------------------------------------------------------------------------- /man/get_pal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/man/get_pal.Rd -------------------------------------------------------------------------------- /man/print_pal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/man/print_pal.Rd -------------------------------------------------------------------------------- /rsconnect/documents/README.Rmd/rpubs.com/rpubs/Document.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shandiya/feathers/HEAD/rsconnect/documents/README.Rmd/rpubs.com/rpubs/Document.dcf --------------------------------------------------------------------------------