Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Kuan-Liu committed Aug 30, 2024
1 parent 33100af commit b9b158f
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions vignettes/vignette.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,24 @@ vignette: >
---

```{r, include = FALSE}
if (!require(tidyverse)){
install.packages("tidyverse",repos="http://cran.r-project.org")
library(tidyverse)
}
if (!require(knitr)){
install.packages("knitr",repos="http://cran.r-project.org")
library(knitr)
}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.align = 'center',
fig.width = 8,
fig.height = 6
fig.height = 6,
warning = F,
message = F
)
if (!require(tidyverse)){
install.packages("tidyverse",repos="http://cran.r-project.org")
library(tidyverse)
}
```

**1. Introduction**
Expand Down

0 comments on commit b9b158f

Please sign in to comment.