---
title: 'Presentation Design Critique'
subtitle: '
'
author: ' Cheng Peng '
institute: 'West Chester University of Pennsylvania
'
date: '
STA490: Statistics Capstone
'
output:
xaringan::moon_reader:
css: xaringan-themer02.css
nature:
slideNumberFormat: "%current%"
highlightStyle: github
highlightLines: true
ratio: 16:9
countIncrementalSlides: true
---
```{r setup, include=FALSE}
options(htmltools.dir.version = FALSE)
if (!require("knitr")) {
install.packages("knitr")
library(knitr)
}
if (!require("pander")) {
install.packages("pander")
library(pander)
}
if (!require("plotly")) {
install.packages("plotly")
library(plotly)
}
if (!require("ggplot2")) {
install.packages("ggplot2")
library(ggplot2)
}
#install.packages("devtools")
#devtools::install_github('emitanaka/anicon')
knitr::opts_chunk$set(
fig.width=3,
fig.height=3,
fig.retina=12,
out.width = "100%",
cache = FALSE,
echo = TRUE,
message = FALSE,
warning = FALSE,
hiline = TRUE
)
```
```{r xaringan-themer, include=FALSE, warning=FALSE}
library(xaringanthemer)
style_duo_accent(primary_color = "#1F4257",
secondary_color = "#380F2A",
# fonts
header_font_google = google_font("Martel"),
text_font_google = google_font("Lato"),
code_font_google = google_font("Fira Mono"))
```
name:toc
class:inverse5, middle
# Table of Contents
Poor Slide Design
Poor Visual Design
|
---
class:inverse1 middle center
name:storytelling
# Good or Bad Slide Designs?
---
name:Presentclear
# Oral Presentation Assessment
- Organization
- Presentation is appropriate for the topic and audience
- A clear opening statement and purpose
- Information presented in a logical sequence
- Pertinent
- Design/layout: neat, clear, and visually appealing
- Summarizes main points
- Content
- Full understanding of the topics
- Practical and analytic logic
- The technical term well defined
- Analytic justifications
- Text content: straightforward, concise, and accurate
- Reference (acknowledge other’s contributions)
|
- Quality of Conclusion
- Well-justified and persuasive conclusions
- Limitations and potential improvements
- Delivery
- Clear and audible voice
- Projects enthusiasm, interest, and confidence.
- Interaction with audience
- Presentation time management
- Visual Aids
- Uses various visual tools to enhance the presentation
- Effectively use colors and charts and avoid distraction
- Response to Questions
- Demonstrates full knowledge of the topic
- Explains and elaborate on all questions
|
---
name:readable
Project Phases Planing
---
class: inverse6
High Dimensional Data
- 3D graphics?
- 3D is generally not recommended in Dataviz!
- High dimensional data with 2D representation
- Use of color coding, movements, different types of marks, tooltip messages, interactive tools, etc.
- Example: Life Expectation vs Total Fertility Over the years by some geographical regions.
---
class: inverse7
Antarctica Penguins
.pull-left[
Considered by many to be the signature species of Antarctica, penguins are charismatic little creatures that win the heart of most tourists who visit the White Continent on an Antarctica cruise.
17 species of penguins are found worldwide, however, only 7 reside in the antarctic region and can be considered truly Antarctica penguins.
These are Adélies, Kings, Chinstraps, Emperors, Gentoos, Macaroni, and Rockhoppers.
Penguins are flightless birds, instead they’re designed to swim. Their powerful paddle muscles and sleek hydrodynamic shape makes them extremely quick in the water, often reaching speeds of 25 mph.
Antarctica penguins are very well adapted to the cold. Their oily feathers, which gives penguins that distinguished well dressed look, do not allow water to pass through to their skin.
]
.pull-right[
Underneath the outer feather layer is thick layer of fat which keep penguins so warm that they often need to fluff up their feathers to cool down.
Although Antarctica penguins have poor eyesight on land, their vision underwater is incredibly good. Like many Antarctica marine animals, penguins eyesight underwater picks up the green and blue hues of the sea exceptionally well.
Seals use their keen eyesight to catch prey and to avoid predators such as Leopard seals Killer whales.
Antarctica penguins generally feed on small fish and krill. It is easy to determine the diet of a particular penguin as penguins that eat krill excrete pink guano whilst penguins that consume fish have white guano.
]
---
name:overusetech
Consistency in Slide Design
```{r echo =FALSE}
anicon::nia("1. Choose a theme and stick to it.", animate = "pulse")
```
```{r echo =FALSE}
anicon::nia("2. Maintain the key design elements.", animate = "float")
```
```{r echo =FALSE}
anicon::nia("3. Use of dominant and secondary colors.", animate = "bounce")
```
```{r echo =FALSE}
anicon::nia("4. Font and background consistency.", animate = "passing")
```
```{r echo =FALSE}
anicon::nia("5. Consistency of bullets point and alternatives.", animate = "vertical")
```
---
name: colors
Making Custom Colors
---
class:inverse1 middle center
name:storytelling
```{r echo =FALSE}
anicon::nia("Good or Bad Graphical Designs?", animate = "pulse")
```
---
name:visuals
# Machine Learning Algorithms
---
# Joint Distribution
---
# Comparing Categorical Distributions
---
# Frequency Distributions
---
# Distribution or Trend?
.pull-left[
]
.pull-right[
]
---
name:Thanks
class: inverse1 center, middle
# Thanks!
Slides created using R packages:
[**xaringan**](https://github.com/yihui/xaringan)
[**gadenbuie/xaringanthemer**](https://github.com/gadenbuie/xaringanthemer)
[**knitr**](http://yihui.name/knitr)
[**R Markdown**](https://rmarkdown.rstudio.com)
via
[**RStudio Desktop**](https://posit.co/download/rstudio-desktop/)