this is bold
this is italicized
this is struck out
this is a hyperlink: https://virginia.edu
this is a link placed on text
Employee of the week:
| Round | Opponent | Result |
|---|---|---|
| 64 | Dairy Queen | UVA won |
| 32 | Richmond Tech | UVA won |
| Sweet 16 | PVCC | UVA won |
| Elite 8 | Purdue | UVA won |
| Final 4 | Auburn | UVA won |
| Championship | Texas Tech | UVA won |
library(tidyverse)
library(DT)
Load data:
roster <- read_csv("uva_roster.csv")
offense <- read_csv("uva_offense.csv")
defense <- read_csv("uva_defense.csv")
datatable(roster)
datatable(offense)
datatable(defense)