+ - 0:00:00
Notes for current slide
Notes for next slide

ðŸŽŊ GOAL ðŸŽŊ

3

xaringan ðŸĪš

  • "The xaringan package is an R Markdown extension based on the JavaScript library remark.js to generate HTML5 presentations of a different style."

Source: xaringan book chapter

4

Basics of xaringan

  • to add a new slide: ---
5

Basics of xaringan

  • to add a new slide: ---

  • for increment slide: --

5

Basics of xaringan

  • to add a new slide: ---

  • for increment slide: --

  • two columns: .pull-left[] & .pull-right[]

5

Basics of xaringan

  • to add a new slide: ---

  • for increment slide: --

  • two columns: .pull-left[] & .pull-right[]

  • class: center, inverse, hide-count, hide-logo

5

Basics of xaringan

  • to add a new slide: ---

  • for increment slide: --

  • two columns: .pull-left[] & .pull-right[]

  • class: center, inverse, hide-count, hide-logo

  • text size:

    • # heading
    • ## sub-heading
    • ### sub-sub-heading
5

Download xE from GitHub

install.packages("devtools")
devtools::install_github("gadenbuie/xaringanExtra")
7

Download xE from GitHub

install.packages("devtools")
devtools::install_github("gadenbuie/xaringanExtra")

Required packages are:

library(xaringan)
library(xaringanExtra)
library(palmerpenguins) # to get penguins data
library(kableExtra) # to prepare tables
library(metathis) # to prepare social card
7

ðŸĪĐ xE can help you to:

  • Add an overview of your presentation with tile view
  • Use the Tachyons CSS utility toolkit
  • Make your slides editable
  • Share your slides in style with share again
  • Broadcast your slides in real time to viewers with broadcast
  • Scribble on your slides during your presentation with scribble
  • Announce slide changes with a subtle tone
  • Add extra CSS styles
  • Animate slide transitions with animate.css
  • Add tabbed panels to slides with panelset
  • Add a logo to all of your slides with logo
  • Add a search box to search through your slides with search
  • Add a live video feed of your webcam
  • Add one-click code copying with clipboard
  • Always play gifs from the start with freezeframe
  • Fit your slides to fill the browser window
8

Slide overview

xaringanExtra::use_tile_view()

9

Tachyons

  • a collection of CSS utility classes (check this website http://tachyons.io/ for a list of functions)
10

Tachyons

  • a collection of CSS utility classes (check this website http://tachyons.io/ for a list of functions)

  • color of the text .nameofthecolor[your text]

    • .silver[I am red!] = I am silver.
    • .gold[I am red!] = Your are gold.
10

Tachyons

  • a collection of CSS utility classes (check this website http://tachyons.io/ for a list of functions)

  • color of the text .nameofthecolor[your text]

    • .silver[I am red!] = I am silver.
    • .gold[I am red!] = Your are gold.
  • italicize text .i[write text here]

    • .i[Allow me to tilt a bit] = Allow me to tilt a bit
10

Tachyons

  • a collection of CSS utility classes (check this website http://tachyons.io/ for a list of functions)

  • color of the text .nameofthecolor[your text]

    • .silver[I am red!] = I am silver.
    • .gold[I am red!] = Your are gold.
  • italicize text .i[write text here]

    • .i[Allow me to tilt a bit] = Allow me to tilt a bit
  • bold text .b[Bold & Beautiful.] = Bold & Beautiful.

  • underline text .underline[This is important.] = This is important

  • strike text .strike[This was by mistake.] = This was by mistake.

10

Combine tachyons

  • This is just fantastic. = .b.underline.blue[This is just fantastic.]
11

Combine tachyons

  • This is just fantastic. = .b.underline.blue[This is just fantastic.]

  • .b.blue[this is .red[awesome] .strike[but fake]] = this is awesome but fake

11

Combine tachyons

  • This is just fantastic. = .b.underline.blue[This is just fantastic.]

  • .b.blue[this is .red[awesome] .strike[but fake]] = this is awesome but fake

  • Text size

    • .f1[hello] = hello
    • .f2[hello] = hello
    • .f3[hello] = hello
    • .f4[hello] = hello
    • .f5[hello] = hello
11

Combine tachyons

  • This is just fantastic. = .b.underline.blue[This is just fantastic.]

  • .b.blue[this is .red[awesome] .strike[but fake]] = this is awesome but fake

  • Text size

    • .f1[hello] = hello
    • .f2[hello] = hello
    • .f3[hello] = hello
    • .f4[hello] = hello
    • .f5[hello] = hello
  • Capital Text .ttc[nice thing to say] = nice thing to say

11

Combine tachyons

  • This is just fantastic. = .b.underline.blue[This is just fantastic.]

  • .b.blue[this is .red[awesome] .strike[but fake]] = this is awesome but fake

  • Text size

    • .f1[hello] = hello
    • .f2[hello] = hello
    • .f3[hello] = hello
    • .f4[hello] = hello
    • .f5[hello] = hello
  • Capital Text .ttc[nice thing to say] = nice thing to say

  • UPPER-CASE TEXT .ttu[we all are tall] = we all are tall

11

Combine tachyons

The only way to write good code is to write tons of bad code first. Feeling shame about bad code stops you from getting to good code

— Hadley Wickham

.bg-washed-yellow.b--dark-blue.ba.bw2.br3.shadow-5.ph4.mt5[ The only way to write good code is to write tons of bad code first. Feeling shame about bad code stops you from getting to good code .tr[ — Hadley Wickham ]]

12

Clipboard

xaringanExtra::use_clipboard(
#button_text = "Copy code from here",
#success_text = "Done",
)
13

Progress bar

xaringanExtra::use_progress_bar(color = "#800080",
location = "top",
height = "0.25em")
14

Panelset

xaringanExtra::use_panelset()
15

Panelset

xaringanExtra::use_panelset()

We can place our content here

  • you can write panel name as you like

  • it is very helpful while showing simultaneously code and its output

  • use \(\leftarrow\) left and \(\rightarrow\) right arrow keys to move from one panel to another

species island bill_length_mm bill_depth_mm flipper_length_mm body_mass_g sex year
Adelie Torgersen 39.1 18.7 181 3750 male 2007
Adelie Torgersen 39.5 17.4 186 3800 female 2007
Adelie Torgersen 40.3 18.0 195 3250 female 2007
Adelie Torgersen NA NA NA NA NA 2007
Adelie Torgersen 36.7 19.3 193 3450 female 2007
Adelie Torgersen 39.3 20.6 190 3650 male 2007
penguins %>%
ggplot(aes(bill_length_mm, bill_depth_mm)) +
geom_point(aes(color = species)) +
scale_color_brewer(palette = "Dark2") +
theme_bw() +
labs(
title = "Relationship between bill length and depth of the palmer penguins",
x = "Bill length (mm)",
y = "Bill depth (mm)"
) +
theme(text = element_text(size = 12))

15

Logo

  • add logo to each slide
xaringanExtra::use_logo(
image_url = "https://pbs.twimg.com/profile_images/1399612666847674369/O6F5fplU_400x400.jpg",
link_url = "https://twitter.com/RLadiesUrmia?ref_src=twsrc%5Egoogle%7Ctwcamp%5Eserp%7Ctwgr%5Eauthor",
width = "70px",
height = "70px"))
16

Highlight code

  • #<< to highlight the code
xaringanExtra::use_extra_styles(
hover_code_line = TRUE,
mute_unhighlighted_code = TRUE
)
17

Share again

  • To share your xaringan slides
xaringanExtra::use_share_again()
18

Social card

```r
meta() %>%
meta_general(
description = "Ajay Koli - Nalanda Academy",
generator = "xaringan and remark.js"
) %>%
meta_name("github-repo" = "koliajaykr/xarExtra-session") %>%
meta_social(
title = "extraordinary slides using xaringanExtra",
url = "https://xeurmia.netlify.app/",
image = "https://xeurmia.netlify.app/images/social-card.png",
og_type = "talk",
og_author = "Ajay Koli",
twitter_card_type = "summary_large_image",
twitter_creator = "@ajay_kolii"
) %>%
include_meta()
```
19

Embed

xaringanExtra::embed_xaringan(url="https://xeurmia.netlify.app/#1",
ratio = 3:1)
20
Paused

Help

Keyboard shortcuts

↑, ←, Pg Up, k Go to previous slide
↓, →, Pg Dn, Space, j Go to next slide
Home Go to first slide
End Go to last slide
Number + Return Go to specific slide
b / m / f Toggle blackout / mirrored / fullscreen mode
c Clone slideshow
p Toggle presenter mode
t Restart the presentation timer
?, h Toggle this help
oTile View: Overview of Slides
Esc Back to slideshow