├── .gitignore ├── README.md ├── aRt_ggplot.Rproj ├── cover_image.png ├── images ├── .DS_Store ├── 2020-16_avatar.png ├── avatar │ ├── .DS_Store │ ├── appa.png │ ├── earth_element.png │ ├── fire_element.png │ ├── original.png │ └── water_element.png ├── bookconcat_images.png ├── flower_cover_art_v5.png ├── genuary_02_rule30.png ├── genuary_02_rule30_v2.png ├── geokaramanis_genuary.jpeg ├── pattern_1.png ├── pattern_17.png ├── pattern_3.png ├── patterns_cover_3.png ├── waffles.jpg └── zine_excerpt.png ├── index.Rmd ├── index.html ├── index_files └── figure-html │ ├── appa_plot_1-1.png │ ├── appa_plot_10-1.png │ ├── appa_plot_10a-1.png │ ├── appa_plot_11-1.png │ ├── appa_plot_2-1.png │ ├── appa_plot_3-1.png │ ├── appa_plot_4-1.png │ ├── appa_plot_4_icon-1.png │ ├── appa_plot_5-1.png │ ├── appa_plot_6-1.png │ ├── appa_plot_7-1.png │ ├── appa_plot_8-1.png │ ├── appa_plot_9-1.png │ ├── appa_plot_aes1-1.png │ ├── appa_plot_aes2-1.png │ ├── comp_art-1.png │ ├── comp_art_1-1.png │ ├── comp_art_2-1.png │ ├── comp_art_3-1.png │ ├── comp_art_4-1.png │ ├── comp_art_4a-1.png │ ├── comp_art_5-1.png │ ├── comp_art_6-1.png │ ├── coord_horizontal_segment-1.png │ ├── coord_vertical_segment-1.png │ ├── geom_segment-1.png │ ├── horizontal_segment-1.png │ ├── pattern-17-1.png │ ├── pattern_01-1.png │ ├── pattern_01a-1.png │ ├── pattern_02-1.png │ ├── pattern_03-1.png │ ├── plot_geom_segment-1.png │ ├── unnamed-chunk-10-1.png │ ├── unnamed-chunk-11-1.png │ ├── unnamed-chunk-12-1.png │ ├── unnamed-chunk-13-1.png │ ├── unnamed-chunk-14-1.png │ ├── unnamed-chunk-15-1.png │ ├── unnamed-chunk-16-1.png │ ├── unnamed-chunk-17-1.png │ ├── unnamed-chunk-18-1.png │ ├── unnamed-chunk-19-1.png │ ├── unnamed-chunk-20-1.png │ ├── unnamed-chunk-21-1.png │ ├── unnamed-chunk-22-1.png │ ├── unnamed-chunk-23-1.png │ ├── unnamed-chunk-24-1.png │ ├── unnamed-chunk-25-1.png │ ├── unnamed-chunk-32-1.png │ ├── unnamed-chunk-33-1.png │ ├── unnamed-chunk-34-1.png │ ├── unnamed-chunk-35-1.png │ ├── unnamed-chunk-36-1.png │ ├── unnamed-chunk-37-1.png │ ├── unnamed-chunk-38-1.png │ ├── unnamed-chunk-39-1.png │ ├── unnamed-chunk-7-1.png │ ├── unnamed-chunk-8-1.png │ ├── unnamed-chunk-9-1.png │ └── vertical_segment-1.png ├── libs ├── anchor-sections-1.0 │ ├── anchor-sections.css │ └── anchor-sections.js ├── clipboard-2.0.6 │ └── clipboard.min.js ├── kePrint-0.0.1 │ └── kePrint.js ├── remark-css-0.0.1 │ └── default.css ├── shareon-1.4.1 │ ├── shareon.min.css │ └── shareon.min.js └── xaringanExtra-shareagain-0.2.4 │ ├── shareagain.css │ └── shareagain.js └── my_css └── theme.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/README.md -------------------------------------------------------------------------------- /aRt_ggplot.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/aRt_ggplot.Rproj -------------------------------------------------------------------------------- /cover_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/cover_image.png -------------------------------------------------------------------------------- /images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/images/.DS_Store -------------------------------------------------------------------------------- /images/2020-16_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/images/2020-16_avatar.png -------------------------------------------------------------------------------- /images/avatar/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/images/avatar/.DS_Store -------------------------------------------------------------------------------- /images/avatar/appa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/images/avatar/appa.png -------------------------------------------------------------------------------- /images/avatar/earth_element.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/images/avatar/earth_element.png -------------------------------------------------------------------------------- /images/avatar/fire_element.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/images/avatar/fire_element.png -------------------------------------------------------------------------------- /images/avatar/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/images/avatar/original.png -------------------------------------------------------------------------------- /images/avatar/water_element.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/images/avatar/water_element.png -------------------------------------------------------------------------------- /images/bookconcat_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/images/bookconcat_images.png -------------------------------------------------------------------------------- /images/flower_cover_art_v5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/images/flower_cover_art_v5.png -------------------------------------------------------------------------------- /images/genuary_02_rule30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/images/genuary_02_rule30.png -------------------------------------------------------------------------------- /images/genuary_02_rule30_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/images/genuary_02_rule30_v2.png -------------------------------------------------------------------------------- /images/geokaramanis_genuary.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/images/geokaramanis_genuary.jpeg -------------------------------------------------------------------------------- /images/pattern_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/images/pattern_1.png -------------------------------------------------------------------------------- /images/pattern_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/images/pattern_17.png -------------------------------------------------------------------------------- /images/pattern_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/images/pattern_3.png -------------------------------------------------------------------------------- /images/patterns_cover_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/images/patterns_cover_3.png -------------------------------------------------------------------------------- /images/waffles.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/images/waffles.jpg -------------------------------------------------------------------------------- /images/zine_excerpt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/images/zine_excerpt.png -------------------------------------------------------------------------------- /index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index.Rmd -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index.html -------------------------------------------------------------------------------- /index_files/figure-html/appa_plot_1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/appa_plot_1-1.png -------------------------------------------------------------------------------- /index_files/figure-html/appa_plot_10-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/appa_plot_10-1.png -------------------------------------------------------------------------------- /index_files/figure-html/appa_plot_10a-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/appa_plot_10a-1.png -------------------------------------------------------------------------------- /index_files/figure-html/appa_plot_11-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/appa_plot_11-1.png -------------------------------------------------------------------------------- /index_files/figure-html/appa_plot_2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/appa_plot_2-1.png -------------------------------------------------------------------------------- /index_files/figure-html/appa_plot_3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/appa_plot_3-1.png -------------------------------------------------------------------------------- /index_files/figure-html/appa_plot_4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/appa_plot_4-1.png -------------------------------------------------------------------------------- /index_files/figure-html/appa_plot_4_icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/appa_plot_4_icon-1.png -------------------------------------------------------------------------------- /index_files/figure-html/appa_plot_5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/appa_plot_5-1.png -------------------------------------------------------------------------------- /index_files/figure-html/appa_plot_6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/appa_plot_6-1.png -------------------------------------------------------------------------------- /index_files/figure-html/appa_plot_7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/appa_plot_7-1.png -------------------------------------------------------------------------------- /index_files/figure-html/appa_plot_8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/appa_plot_8-1.png -------------------------------------------------------------------------------- /index_files/figure-html/appa_plot_9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/appa_plot_9-1.png -------------------------------------------------------------------------------- /index_files/figure-html/appa_plot_aes1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/appa_plot_aes1-1.png -------------------------------------------------------------------------------- /index_files/figure-html/appa_plot_aes2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/appa_plot_aes2-1.png -------------------------------------------------------------------------------- /index_files/figure-html/comp_art-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/comp_art-1.png -------------------------------------------------------------------------------- /index_files/figure-html/comp_art_1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/comp_art_1-1.png -------------------------------------------------------------------------------- /index_files/figure-html/comp_art_2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/comp_art_2-1.png -------------------------------------------------------------------------------- /index_files/figure-html/comp_art_3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/comp_art_3-1.png -------------------------------------------------------------------------------- /index_files/figure-html/comp_art_4-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/comp_art_4-1.png -------------------------------------------------------------------------------- /index_files/figure-html/comp_art_4a-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/comp_art_4a-1.png -------------------------------------------------------------------------------- /index_files/figure-html/comp_art_5-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/comp_art_5-1.png -------------------------------------------------------------------------------- /index_files/figure-html/comp_art_6-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/comp_art_6-1.png -------------------------------------------------------------------------------- /index_files/figure-html/coord_horizontal_segment-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/coord_horizontal_segment-1.png -------------------------------------------------------------------------------- /index_files/figure-html/coord_vertical_segment-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/coord_vertical_segment-1.png -------------------------------------------------------------------------------- /index_files/figure-html/geom_segment-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/geom_segment-1.png -------------------------------------------------------------------------------- /index_files/figure-html/horizontal_segment-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/horizontal_segment-1.png -------------------------------------------------------------------------------- /index_files/figure-html/pattern-17-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/pattern-17-1.png -------------------------------------------------------------------------------- /index_files/figure-html/pattern_01-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/pattern_01-1.png -------------------------------------------------------------------------------- /index_files/figure-html/pattern_01a-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/pattern_01a-1.png -------------------------------------------------------------------------------- /index_files/figure-html/pattern_02-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/pattern_02-1.png -------------------------------------------------------------------------------- /index_files/figure-html/pattern_03-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/pattern_03-1.png -------------------------------------------------------------------------------- /index_files/figure-html/plot_geom_segment-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/plot_geom_segment-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-10-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/unnamed-chunk-10-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-11-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/unnamed-chunk-11-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/unnamed-chunk-12-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-13-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/unnamed-chunk-13-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-14-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/unnamed-chunk-14-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-15-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/unnamed-chunk-15-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-16-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/unnamed-chunk-16-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-17-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/unnamed-chunk-17-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-18-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/unnamed-chunk-18-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-19-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/unnamed-chunk-19-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-20-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/unnamed-chunk-20-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-21-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/unnamed-chunk-21-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-22-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/unnamed-chunk-22-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-23-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/unnamed-chunk-23-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-24-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/unnamed-chunk-24-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-25-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/unnamed-chunk-25-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-32-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/unnamed-chunk-32-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-33-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/unnamed-chunk-33-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-34-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/unnamed-chunk-34-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-35-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/unnamed-chunk-35-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-36-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/unnamed-chunk-36-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-37-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/unnamed-chunk-37-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-38-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/unnamed-chunk-38-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-39-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/unnamed-chunk-39-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-7-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/unnamed-chunk-7-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-8-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/unnamed-chunk-8-1.png -------------------------------------------------------------------------------- /index_files/figure-html/unnamed-chunk-9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/unnamed-chunk-9-1.png -------------------------------------------------------------------------------- /index_files/figure-html/vertical_segment-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/index_files/figure-html/vertical_segment-1.png -------------------------------------------------------------------------------- /libs/anchor-sections-1.0/anchor-sections.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/libs/anchor-sections-1.0/anchor-sections.css -------------------------------------------------------------------------------- /libs/anchor-sections-1.0/anchor-sections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/libs/anchor-sections-1.0/anchor-sections.js -------------------------------------------------------------------------------- /libs/clipboard-2.0.6/clipboard.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/libs/clipboard-2.0.6/clipboard.min.js -------------------------------------------------------------------------------- /libs/kePrint-0.0.1/kePrint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/libs/kePrint-0.0.1/kePrint.js -------------------------------------------------------------------------------- /libs/remark-css-0.0.1/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/libs/remark-css-0.0.1/default.css -------------------------------------------------------------------------------- /libs/shareon-1.4.1/shareon.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/libs/shareon-1.4.1/shareon.min.css -------------------------------------------------------------------------------- /libs/shareon-1.4.1/shareon.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/libs/shareon-1.4.1/shareon.min.js -------------------------------------------------------------------------------- /libs/xaringanExtra-shareagain-0.2.4/shareagain.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/libs/xaringanExtra-shareagain-0.2.4/shareagain.css -------------------------------------------------------------------------------- /libs/xaringanExtra-shareagain-0.2.4/shareagain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/libs/xaringanExtra-shareagain-0.2.4/shareagain.js -------------------------------------------------------------------------------- /my_css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ijeamakaanyene/aRt_ggplot/HEAD/my_css/theme.css --------------------------------------------------------------------------------