ANTH630 Home

Intro

In this lesson, we discuss methods for presenting research results visually. For the final project, you have the option of either creating an academic conference poster or an interactive digital dashboard.

Conference poster

Academic posters are designed to quickly convey research questions and key results in a visual format. The poster should be visually compelling and use minimal text.

Posters can be created with many different software programs such as InDesign, Google slides or Powerpoint. A simple way to create a poster is to use a single powerpoint slide with the document dimensions set to the dimensions that the poster will be printed in. Different conferences have different requirements for poster size. For example, the AAA maximum poster size is 4ft x 6ft. Working on such a large document, your headings and text will also be much larger.

A good rule of thumb for poster legibility is that when the poster is printed onto an 8.5 x 11 sheet, you should be able to read all the text.

Poster sections

Think of a poster like a visual representation of a research article. As such, posters typically include some of the following sections:

  • Introduction
  • Site Background
  • Methods
  • Results
  • Discussion
  • Conclusion
  • Acknowledgments
  • Works Cited

Flexdashboard

A second option for the final project is to create a digital data analysis dashboard with the flexdashboard package. This allows you to host your data analysis online and present it for public audiences.

Creating a flexdashboard requires using R Markdown to create a document. First, open RStudio and create a new R Markdown file. In the dialog box that opens, click “From Template.” If flexdashboard is installed, this will be one of the options. If it is not an option, go back and install the package before proceeding.

A new document will open with a basic layout for several charts in an untitled webpage. To turn the code into an html file, click “Knit” in RStudio and the compiled project will appear in the “Viewer” window. This can be expanded, hosted, or published directly from the viewer.

The basic template will look something like this.

Though not covered today, dashboards can also be made with Shiny in R.

Flexdashboard syntax

The flexdashboard package follows much of the same syntax as R Markdown generally but has some unique features.

The layout of a dashboard can be thought of as a series of rows and columns. The layout is set by manually defining either the columns and rows with the following code. The width of each element can be defined or R will automatically divide the space based evenly based on the number of rows or columns.

Column {data-width=700}
-------------------------------------

Row
-------------------------------------

Each column or row is populated by content blocks, dnoeted by a third level heading ###. In context, this looks like this

Column {data-width=700}
-------------------------------------

### Block 1

### Block 2

Column {data-width=300}
-------------------------------------

### Block 1

Read more about layouts here.

R code is executed in chunks denoted by the following code, but uncommented.

# ```{r}

# ```

General formatting is done in markdown. So the code…

- **bold**
- *italic*

> block quote

…will produce the following:

  • bold
  • italic

block quote

Create your own sample dashboard

Getting started

The next section will walk you through how to create a sample dashboard using the Otter observation data from Stephens and Eckert (2019). Full citation: Tiffany Stephens and Ginny Eckert. 2019. Boat-based counts of sea otters at specific sites in Southeast Alaska. Knowledge Network for Biocomplexity. urn:uuid:b910f74b-171b-4d2b-b065-fb21823a8e84.

This dashboard uses example tables and figures from the R tutorials we have covered previously in this course.

Try it

  1. Create a new R Markdown document from the flexdashboard template in RStudio.
  2. Change the layout of the document so that there are two columns, each of width 500.
  3. Add a third chart to the second column,
Click for solution
Column {data-width=500}
-----------------------------------------------------------------------

### Chart A


Column {data-width=500}
-----------------------------------------------------------------------

### Chart B

### Chart C

### Chart D

Try it

Create your first chart in the left column of the flexdashboard. Remember to execute the R code with the right syntax.

  1. Load the otter data into your R script.
otter <- read.csv("https://maddiebrown.github.io/ANTH630/data/sea_otter_counts_2017&2018_CLEANDATA.csv")
  1. Load the ggplot, tidyverse, knitr and flexdashboard packages.
  2. Add the following code and plot to the left column.
notterpersite <- aggregate(n_otter ~ site_name, FUN = sum, data = otter)

notterpersite <- notterpersite[order(notterpersite$n_otter, decreasing = T), ]

top5 <- notterpersite[1:5, ]

top5$site_name <- reorder(top5$site_name, top5$n_otter)

p1 <- ggplot(top5, aes(x = site_name, y = n_otter)) + geom_col() + labs(x="Site name", y="Number of otters observed")

p1 + coord_flip()
  1. Rename the chart from Chart A to something more descriptive.
  2. knit the document together and view the results.

Content blocks

In addition to graphs, flexdashboards can also include text data, images, tables, and other types of content.

Try it

Text can be added to a flexdashboard simply by typing the text under the content block heading.

  1. Edit the name of “Chart B” to “About this dashboard.”
  2. Add text describing the dashboard and its data source.
  3. Format the text with at least two of the following: italics or bold lettering, bullet points, links. See R Markdown cheatsheet for more on formatting with markdown.
  4. knit the document to view the results.
Click for solution
### About this dashboard

- This example dashboard uses otter observation data from Stephens and Eckert (2019). 

- **Full citation:** Tiffany Stephens and Ginny Eckert. 2019. *Boat-based counts of sea otters at specific sites in Southeast Alaska*. Knowledge Network for Biocomplexity. [urn:uuid:b910f74b-171b-4d2b-b065-fb21823a8e84.](https://knb.ecoinformatics.org/view/urn%3Auuid%3Ab910f74b-171b-4d2b-b065-fb21823a8e84#urn%3Auuid%3A7eba259b-eeb5-4375-9596-e797bbb0b27d)

Tables

Tables are created in flexdashboards using R Markdown syntax or packages designed to create tables.

With markdown, you define each cell of the table.

|   |   |   |
|---|---|---|
|   |   |   |
|   |   |   |

Each cell can be filled with content.

| test | A | B |
|------|---|---|
| 1    | 2 | 3 |
| 4    | 5 | 6 |

For example, the code above generates the following table:

test A B
1 2 3
4 5 6

A helpful markdown table generator can be found here.

More information on tables in R Markdown can be found here.

Try-it

  1. Using the kable() function from the knitr package, replace Chart C with a table based on the following code: (note: you may need to install and load the knitr package first)
top_n(otter, 10, n_otter) %>% select(site_name, date_DDMMYY, year, n_otter) %>% arrange(desc(n_otter))
  1. Give the table a descriptive name.
  2. knit your document to view the results.
Click for solution

Uncomment the R code chunks to run this code.

### Top otter observations in a single day

#```{r}
#topotterdays <- top_n(otter, 10, n_otter) %>% select(site_name, date_DDMMYY, year, n_otter) %>% arrange(desc(n_otter))

#kable(topotterdays) # you can also directly input the code used to create topotterdays into the kable() function
#```

Value boxes

Value boxes are a great way to highlight important values or data. Value boxes can also be used as buttons linking to other webpages. The values of a value box can be static or update based on code running in the background. The color can be customized and many different types of icons can also be incorporated.

Depending on the version of R used, it seems like some of the modern versions of icons may not work seamlessley from certain sources. They could be added as html, but for the purposes of this tutorial, we will add icons directly into value boxes by name. Try searching for the older name for a particular icon if it doesn’t work on the first try. For ion icons, use this cheatsheet.

Try it

In the Chart D section, add a new value box for the total number of otters.

  1. Create an object that contains the total number of otters (Hint: use the tally() function from tidyverse).
  2. Set the value of the value box to the new object just created and add a secondary description for what that number means.
  3. Set the color and add an icon of choice to the box.
  4. knit your document to view the results.
Click for solution

Uncomment the r code lines.

### Chart D
#```{r}
totalotter<- otter %>% tally(n_otter) # 3188
valueBox(value=totalotter,"total otters observed",color="red", icon="ion-android-boat")
#```

OR

### total otters observed
#```{r}
totalotter<- otter %>% tally(n_otter) # 3188
valueBox(3188, color="green", icon="fa-pencil")
#```

Advanced layouts

Tabsets

Rather than stacking content blocks in columns, they can be included as multiple pages accessed by tabs. A column can be turned into a tabset by changing its attributes {} to .{tabset}.

Column {.tabset}
-------------------------------------
   
### Chart 2


 
### Chart 3
    

Try it

  1. Convert the second column in your dashboard to a tabset.
  2. knit the document to view the results.
Click for solution
Column {data-width=500 .tabset}
-----------------------------------------------------------------------

At this point, your dashboard should look something like this

Multiple pages

Flexdashboards can also be made with multiple pages. This is handy when the data story cannot be conveyed in a single page alone. The syntax for multiple pages is as follows:

Page 1
===================================== 

Page 2
===================================== 

Page 3
===================================== 

R will use the page names as headings in the navigation bar. The navigation bar can also be customized by changing the order, spacing, icons, or text. Read more about this here

Try it

  1. Turn dashboard columns into named pages instead.
  2. Rearrange the content blocks so that the “About” text is alone on a single page and the other 3 content blocks are together on a second page.
  3. Divide the page that has multiple content blocks into two columns, with the content blocks arranged however you like.
  4. knit the document and view the results

Uncomment the lines of R code to run the code below.

Click for solution
About
===================================== 
### About this dashboard

- This example dashboard uses otter observation data from Stephens and Eckert (2019). 

- **Full citation:** Tiffany Stephens and Ginny Eckert. 2019. *Boat-based counts of sea otters at specific sites in Southeast Alaska*. Knowledge Network for Biocomplexity. [urn:uuid:b910f74b-171b-4d2b-b065-fb21823a8e84.](https://knb.ecoinformatics.org/view/urn%3Auuid%3Ab910f74b-171b-4d2b-b065-fb21823a8e84#urn%3Auuid%3A7eba259b-eeb5-4375-9596-e797bbb0b27d)

Data analysis
===================================== 

Column 
---------------------------------------
### Top otter observation sites 
#```{r}
notterpersite <- aggregate(n_otter ~ site_name, FUN = sum, data = otter)
notterpersite <- notterpersite[order(notterpersite$n_otter, decreasing = T), ]
top5 <- notterpersite[1:5, ]
top5$site_name <- reorder(top5$site_name, top5$n_otter)
p1 <- ggplot(top5, aes(x = site_name, y = n_otter)) + geom_col() + labs(x="Site name", y="Number of otters observed")
p1 + coord_flip()
#```


Column 
---------------------------------------

### Top otter observations in a single day

#```{r}
#topotterdays <- top_n(otter, 10, n_otter) %>% select(site_name, date_DDMMYY, year, n_otter) %>% arrange(desc(n_otter))

kable(topotterdays)
#```

### Total otters observed

#```{r}
# total number of otters
#totalotter<- otter %>% tally(n_otter) # 3188

#valueBox(value=totalotter,"Total otters observed",color="red", icon="ion-android-boat")
#```

Your result should look something like this.

Storyboards

Storyboards further extend the functionality of flexdashboards by adding an interactive menu slider for different subpages on a single site.

View an example storyboard with source code on the html widgets showcase.

A whole dashboard can be set as a storyboard in the document setup at the top of the script. In addition, a single page can be set as a storyboard in the same way we defined a column as a tabset.

The basic syntax of a storyboard page is to set each graphical element with a third-level heading ###. Then R code defines the large graphic of interest. Finally, each panel can be further annotated with a descriptive sidebar following ***.

Page {.storyboard}
===================================== 

### Panel 1
#```{r}

#```

*** 
Description

### Panel 2
#```{r}

#```

*** 
Description

Try it

  1. Redefine the “Data analysis” page to be a storyboard.
  2. knit and view the document.
  3. What happened to the column headings? Fix any formatting issues.
  4. Add a new panel based on the following code:
library(leaflet)
leaflet(otter) %>% 
  addTiles() %>%
  addCircleMarkers(lng=otter$longitude_E, lat=otter$latitude_N)
  1. The table of “top observation dates” might be better as a descriptive sidebar to the barplot. Move it there.
  2. The descriptions of each storyboard panel in the top menu seem sparse. Add some additional formatting and descriptive text.
  3. knit the document and view the results.

Uncomment the R code below to run this.

Click for solution

Delete column headings.

Data analysis {.storyboard}
===================================== 

### **Top otter observations:** Comparing the sites and dates with the highest number of otters observed.
#```{r}
notterpersite <- aggregate(n_otter ~ site_name, FUN = sum, data = otter)
notterpersite <- notterpersite[order(notterpersite$n_otter, decreasing = T), ]
top5 <- notterpersite[1:5, ]
top5$site_name <- reorder(top5$site_name, top5$n_otter)
p1 <- ggplot(top5, aes(x = site_name, y = n_otter)) + geom_col() + labs(x="Site name", y="Number of otters observed")
p1 + coord_flip()
#```

*** 

**Top otter observations in a single day**

#```{r}
topotterdays <- top_n(otter, 10, n_otter) %>% select(site_name, date_DDMMYY, year, n_otter) %>% arrange(desc(n_otter))

kable(topotterdays)
#```


### Total otters observed

#```{r}
# total number of otters
totalotter<- otter %>% tally(n_otter) # 3188

valueBox(value=totalotter,"Total otters observed",color="red", icon="ion-android-boat")
#```

*** 

Otter observations were made at a variety of sites over two years (2017 & 2018). The number to the left represents the total number of observations made.


### Map of otter sightings

#```{r}
library(leaflet)
leaflet(otter) %>% 
  addTiles() %>%
  addCircleMarkers(lng=otter$longitude_E, lat=otter$latitude_N)
#```

Themes

Dashboards can also be customized using a number of built-in themes. You can add some of these bootswatch themes in the heading section of your document. Not all of the themes are compatible with the version of bootstrap included in R Markdown. If you know html or css, there are ways to further customize the page. For now, we can use the built-in themes to change the style of the page.

Simply add a theme: argument to the yaml header at the top of the script.

---
title: "Dashboard example"
output: 
  flexdashboard::flex_dashboard:
    orientation: columns
    vertical_layout: fill
    theme: flatly
---

Try it

  1. Add a theme to your page.
  2. knit the document to view the results.

Your final dashboard should be customized and look something like this (though with a different theme and text).

Examples

We’ve only scratched the surface of all the different ways to customize and add content to flexdashboards. For further inspiration, check out the following pages.

Hosting your project

Once you’ve created your dashboard you’ll want to share it with the world. Simply hitting knit creates a .html file in your working directory. This file can be emailed or otherwise shared as a standalone output. This file can also be hosted online with a platform of choice. This final section introduces two free platforms for quickly and easily hosting R Markdown data products.

RPubs

RPubs is a great, quick way to host data analysis and dashboards. All you need is an account to get started and you can publish documents directly from RStudio. More information can be found on their Getting Started page. Note that all documents published to RPubs are public.

Github.io

Github pages is another great option for hosting web pages and dashboards created with R. First you will need a github account and to enable github.io pages. Note that while you can create private repositories in github, the github.io pages are public. Additional information can be found in the links below.