class: title-slide, center, middle, inverse background-image: url(img/PurpleSky.jpg) background-position: bottom background-size: cover # R-Ladies Themed<br>xaringan Template Photo by [Vincentiu Solomon](https://unsplash.com/@vincentiu) ??? This slide uses: - a custom `title-slide` class that removes the slide number from the title slide - a background image - background-image: url(img/PurpleSky.jpg) - background-position: bottom - background-size: cover --- class: inverse, middle, center <img style="border-radius: 50%;" src="img/RLadiesGlobal.png" width="150px" alt="R-Ladies logo" /> # R-Ladies Global [
Link
rladies.org](https://rladies.org)<br/> [
Twitter
@RLadiesGlobal](https://twitter.com/rladiesglobal)<br/> [
Paper Plane
info@rladies.org](mailto:info@rladies.org)<br> [
Slack Logo
Join the Slack](https://rladies-community-slack.herokuapp.com/) ??? Hello! My name is R-Ladies Global and I'm excited to be here to help promote gender diversity in the R community. This slide uses: - `rmarkdown::metadata` to access YAML metadata - icons from the fontawesome package with the `ally = "sem"` (semantic attribute) accessibility feature. - image inserted using html code and including the alternative text attribute -- If you like this R-Ladies themed xaringan template, you can copy it to your computer: **usethis::use_course("spcanelon/RLadies-xaringan-template")** And learn how to deploy xaringan slides to GitHub Pages in this blog post:<br> [silvia.rbind.io/2021-03-16-deploying-xaringan-slides](https://silvia.rbind.io/2021-03-16-deploying-xaringan-slides) ??? This slide uses: - the `inverse`, `middle`, and `center` slide classes - an image inserted with html --- .left-column[ # R-Ladies Global ] .right-column[ ## Mission R-Ladies is a worldwide organization whose mission is to promote Gender Diversity in the R community. The R community suffers from an underrepresentation of minority genders (including but not limited to cis/trans women, trans men, non-binary, genderqueer, agender) in every role and area of participation, whether as leaders, package developers, conference speakers, conference participants, educators, or users (see recent stats). .footnote[ ---- Original source: https://rladies.org/about-us] ] ??? This slide uses: - the `.left-column[]` and `.right-column[]` classes - a horizontal bar - the `.footnote[]` class --- # Making lists and emphasizing text -- The R-Ladies Community has: -- * 85,144 members -- * Across 56 countries -- * and 198 chapters worldwide -- ----- And with the help of Markdown you can write text in **bold** and _italics_ -- 1. And make numbered lists 1. like this one .footnote[ These numbers come from the [Shiny R Community Explorer](https://benubah.github.io/r-community-explorer/rladies.html) developed by Ben Ubah ] ??? This slide uses: - bullet list with `*` - incremental slides divided by `--` - numbered list with `1.` - a horizontal bar - the `.footnote[]` class --- # Inserting images ```r knitr::include_graphics("img/RLadiesMap.png") ``` <img src="img/RLadiesMap.png" title="World map with countries that have R-Ladies chapters highlighted in purple" alt="World map with countries that have R-Ladies chapters highlighted in purple" width="452" /> -- > Note: You can use the `fig.alt` code chunk option to add alternative text to your images, that way they are accessible to screen reader users: - In code chunk: `{r, fig.alt = "<descriptive alt text>"}`. - Read more about this in [{knitr} NEWS.md](https://github.com/yihui/knitr/blob/master/NEWS.md#new-features-1) ??? This slide uses: - an image inserted with `knitr::include_graphics()` - the `fig.alt =` code chunk option for alternative text --- # Tables and quotes ### Table .pull-left[ `palmerpenguins::penguins` The `penguins` dataset contains size measurements for adult penguins nesting near Palmer Station in Antarctica. Measurements like `body_mass_g` ] .pull-right[ <table> <thead> <tr> <th style="text-align:left;"> species </th> <th style="text-align:left;"> island </th> <th style="text-align:right;"> body_mass_g </th> </tr> </thead> <tbody> <tr> <td style="text-align:left;"> Chinstrap </td> <td style="text-align:left;"> Dream </td> <td style="text-align:right;"> 2700 </td> </tr> <tr> <td style="text-align:left;"> Adelie </td> <td style="text-align:left;"> Biscoe </td> <td style="text-align:right;"> 2850 </td> </tr> <tr> <td style="text-align:left;"> Adelie </td> <td style="text-align:left;"> Biscoe </td> <td style="text-align:right;"> 2850 </td> </tr> <tr> <td style="text-align:left;"> Adelie </td> <td style="text-align:left;"> Biscoe </td> <td style="text-align:right;"> 2900 </td> </tr> <tr> <td style="text-align:left;"> Adelie </td> <td style="text-align:left;"> Dream </td> <td style="text-align:right;"> 2900 </td> </tr> <tr> <td style="text-align:left;"> Adelie </td> <td style="text-align:left;"> Torgersen </td> <td style="text-align:right;"> 2900 </td> </tr> </tbody> </table> ] ??? This slide uses: - the `.pull-left[]` and `.pull-right[]` classes - an R code chunk to produce the html table -- ### Quote > You can read more about the `palmerpenguins` data package authored and maintained by Allison Horst at [allisonhorst.github.io/palmerpenguins](https://allisonhorst.github.io/palmerpenguins/) ??? - a quote with `>` --- # Highlighting code `> This is what inline code looks like` You can highlight lines of code within code chunks using `#<<`: ### Code ```r palmerpenguins::penguins %>% ggplot(aes(x = island, y = body_mass_g)) + geom_boxplot(aes(fill = island)) #<< ``` ### Output ```r palmerpenguins::penguins %>% ggplot(aes(x = species, y = body_mass_g)) + * geom_boxplot(aes(fill = island)) ``` ??? This slide uses: - inline code highlighting with backticks ` `` ` - a code chunk to produce a ggplot --- ```r palmerpenguins::penguins %>% ggplot(aes(x = species, y = body_mass_g)) + geom_boxplot(aes(fill = island)) ``` ![](index_files/figure-html/penguin-body-mass-1.png)<!-- --> ??? This slide uses: - a code chunk to produce a ggplot - code chunk option `fig.height = 4.5` to control the figure height --- class: middle, inverse, title-slide .pull-left[ # Thank you! <br/> ## R-Ladies Global ### Promoting gender diversity in the R community ] .pull-right[ .right[ <img style="border-radius: 50%;" src="img/RLadiesGlobal.png" width="150px" alt="R-Ladies logo" /> [
Link
rladies.org](https://rladies.org)<br/> [
Twitter
@RLadiesGlobal](https://twitter.com/rladiesglobal)<br/> [
Paper Plane
info@rladies.org](mailto:info@rladies.org)<br> [
Slack Logo
Join the Slack](https://rladies-community-slack.herokuapp.com/) ]] ??? Thank you for joining me! You can find my contact information linked on this slide if you want to get in touch, and I'm happy to take any questions. This slide also uses: - the `title-slide` class, to remove the slide number at the bottom