├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── colors.R ├── pilot.R ├── scales.R ├── themes.R ├── wrappers.R └── zzz.R ├── gallery └── examples │ ├── area-chart-annotations │ ├── area-chart-annotations.R │ ├── area-chart-annotations.csv │ ├── area-chart-annotations.png │ └── area-chart-annotations.svg │ ├── bar-chart-labels │ ├── bar-chart-labels.R │ ├── bar-chart-labels.csv │ ├── bar-chart-labels.png │ └── bar-chart-labels.svg │ ├── line-chart │ ├── line-chart.R │ ├── line-chart.csv │ ├── line-chart.png │ └── line-chart.svg │ ├── scatter-chart-basic │ ├── scatter-chart-basic-1.png │ ├── scatter-chart-basic-1.svg │ ├── scatter-chart-basic-2.png │ ├── scatter-chart-basic-2.svg │ └── scatter-chart-basic.R │ ├── scatter-chart-facets │ ├── scatter-chart-facets.R │ ├── scatter-chart-facets.csv │ ├── scatter-chart-facets.png │ └── scatter-chart-facets.svg │ ├── scatter-chart-regression │ ├── scatter-chart-regression-data.csv │ ├── scatter-chart-regression-posterior.csv │ ├── scatter-chart-regression.R │ ├── scatter-chart-regression.png │ └── scatter-chart-regression.svg │ └── stacked-column-chart │ ├── stacked-column-chart.R │ ├── stacked-column-chart.csv │ ├── stacked-column-chart.png │ └── stacked-column-chart.svg ├── man ├── add_pilot_titles.Rd ├── annotate_pilot.Rd ├── geom_text_pilot.Rd ├── get_pilot_colors.Rd ├── get_pilot_palette.Rd ├── pilot.Rd ├── pilot_color.Rd ├── pilot_colors.Rd ├── scale_color_pilot.Rd ├── scale_fill_pilot.Rd ├── set_pilot_family.Rd └── theme_pilot.Rd ├── pilot.Rproj └── readme.md /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/LICENSE -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/colors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/R/colors.R -------------------------------------------------------------------------------- /R/pilot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/R/pilot.R -------------------------------------------------------------------------------- /R/scales.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/R/scales.R -------------------------------------------------------------------------------- /R/themes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/R/themes.R -------------------------------------------------------------------------------- /R/wrappers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/R/wrappers.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/R/zzz.R -------------------------------------------------------------------------------- /gallery/examples/area-chart-annotations/area-chart-annotations.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/gallery/examples/area-chart-annotations/area-chart-annotations.R -------------------------------------------------------------------------------- /gallery/examples/area-chart-annotations/area-chart-annotations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/gallery/examples/area-chart-annotations/area-chart-annotations.csv -------------------------------------------------------------------------------- /gallery/examples/area-chart-annotations/area-chart-annotations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/gallery/examples/area-chart-annotations/area-chart-annotations.png -------------------------------------------------------------------------------- /gallery/examples/area-chart-annotations/area-chart-annotations.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/gallery/examples/area-chart-annotations/area-chart-annotations.svg -------------------------------------------------------------------------------- /gallery/examples/bar-chart-labels/bar-chart-labels.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/gallery/examples/bar-chart-labels/bar-chart-labels.R -------------------------------------------------------------------------------- /gallery/examples/bar-chart-labels/bar-chart-labels.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/gallery/examples/bar-chart-labels/bar-chart-labels.csv -------------------------------------------------------------------------------- /gallery/examples/bar-chart-labels/bar-chart-labels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/gallery/examples/bar-chart-labels/bar-chart-labels.png -------------------------------------------------------------------------------- /gallery/examples/bar-chart-labels/bar-chart-labels.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/gallery/examples/bar-chart-labels/bar-chart-labels.svg -------------------------------------------------------------------------------- /gallery/examples/line-chart/line-chart.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/gallery/examples/line-chart/line-chart.R -------------------------------------------------------------------------------- /gallery/examples/line-chart/line-chart.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/gallery/examples/line-chart/line-chart.csv -------------------------------------------------------------------------------- /gallery/examples/line-chart/line-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/gallery/examples/line-chart/line-chart.png -------------------------------------------------------------------------------- /gallery/examples/line-chart/line-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/gallery/examples/line-chart/line-chart.svg -------------------------------------------------------------------------------- /gallery/examples/scatter-chart-basic/scatter-chart-basic-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/gallery/examples/scatter-chart-basic/scatter-chart-basic-1.png -------------------------------------------------------------------------------- /gallery/examples/scatter-chart-basic/scatter-chart-basic-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/gallery/examples/scatter-chart-basic/scatter-chart-basic-1.svg -------------------------------------------------------------------------------- /gallery/examples/scatter-chart-basic/scatter-chart-basic-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/gallery/examples/scatter-chart-basic/scatter-chart-basic-2.png -------------------------------------------------------------------------------- /gallery/examples/scatter-chart-basic/scatter-chart-basic-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/gallery/examples/scatter-chart-basic/scatter-chart-basic-2.svg -------------------------------------------------------------------------------- /gallery/examples/scatter-chart-basic/scatter-chart-basic.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/gallery/examples/scatter-chart-basic/scatter-chart-basic.R -------------------------------------------------------------------------------- /gallery/examples/scatter-chart-facets/scatter-chart-facets.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/gallery/examples/scatter-chart-facets/scatter-chart-facets.R -------------------------------------------------------------------------------- /gallery/examples/scatter-chart-facets/scatter-chart-facets.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/gallery/examples/scatter-chart-facets/scatter-chart-facets.csv -------------------------------------------------------------------------------- /gallery/examples/scatter-chart-facets/scatter-chart-facets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/gallery/examples/scatter-chart-facets/scatter-chart-facets.png -------------------------------------------------------------------------------- /gallery/examples/scatter-chart-facets/scatter-chart-facets.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/gallery/examples/scatter-chart-facets/scatter-chart-facets.svg -------------------------------------------------------------------------------- /gallery/examples/scatter-chart-regression/scatter-chart-regression-data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/gallery/examples/scatter-chart-regression/scatter-chart-regression-data.csv -------------------------------------------------------------------------------- /gallery/examples/scatter-chart-regression/scatter-chart-regression-posterior.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/gallery/examples/scatter-chart-regression/scatter-chart-regression-posterior.csv -------------------------------------------------------------------------------- /gallery/examples/scatter-chart-regression/scatter-chart-regression.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/gallery/examples/scatter-chart-regression/scatter-chart-regression.R -------------------------------------------------------------------------------- /gallery/examples/scatter-chart-regression/scatter-chart-regression.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/gallery/examples/scatter-chart-regression/scatter-chart-regression.png -------------------------------------------------------------------------------- /gallery/examples/scatter-chart-regression/scatter-chart-regression.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/gallery/examples/scatter-chart-regression/scatter-chart-regression.svg -------------------------------------------------------------------------------- /gallery/examples/stacked-column-chart/stacked-column-chart.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/gallery/examples/stacked-column-chart/stacked-column-chart.R -------------------------------------------------------------------------------- /gallery/examples/stacked-column-chart/stacked-column-chart.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/gallery/examples/stacked-column-chart/stacked-column-chart.csv -------------------------------------------------------------------------------- /gallery/examples/stacked-column-chart/stacked-column-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/gallery/examples/stacked-column-chart/stacked-column-chart.png -------------------------------------------------------------------------------- /gallery/examples/stacked-column-chart/stacked-column-chart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/gallery/examples/stacked-column-chart/stacked-column-chart.svg -------------------------------------------------------------------------------- /man/add_pilot_titles.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/man/add_pilot_titles.Rd -------------------------------------------------------------------------------- /man/annotate_pilot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/man/annotate_pilot.Rd -------------------------------------------------------------------------------- /man/geom_text_pilot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/man/geom_text_pilot.Rd -------------------------------------------------------------------------------- /man/get_pilot_colors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/man/get_pilot_colors.Rd -------------------------------------------------------------------------------- /man/get_pilot_palette.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/man/get_pilot_palette.Rd -------------------------------------------------------------------------------- /man/pilot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/man/pilot.Rd -------------------------------------------------------------------------------- /man/pilot_color.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/man/pilot_color.Rd -------------------------------------------------------------------------------- /man/pilot_colors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/man/pilot_colors.Rd -------------------------------------------------------------------------------- /man/scale_color_pilot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/man/scale_color_pilot.Rd -------------------------------------------------------------------------------- /man/scale_fill_pilot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/man/scale_fill_pilot.Rd -------------------------------------------------------------------------------- /man/set_pilot_family.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/man/set_pilot_family.Rd -------------------------------------------------------------------------------- /man/theme_pilot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/man/theme_pilot.Rd -------------------------------------------------------------------------------- /pilot.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/pilot.Rproj -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olihawkins/pilot/HEAD/readme.md --------------------------------------------------------------------------------