Skip to content
Snippets Groups Projects
Commit 484fce9e authored by Carine Rey's avatar Carine Rey
Browse files

fix error with klippy

parent e7eb9b6c
No related branches found
No related tags found
1 merge request!6Switch to main as default branch
...@@ -23,12 +23,15 @@ knitr::opts_chunk$set(echo = TRUE) ...@@ -23,12 +23,15 @@ knitr::opts_chunk$set(echo = TRUE)
knitr::opts_chunk$set(comment = NA) knitr::opts_chunk$set(comment = NA)
``` ```
```{r klippy, echo=FALSE, include=FALSE} ```{r klippy_install, echo=FALSE, include=FALSE}
if (! require("klippy")) { if (! require("klippy")) {
install.packages("remotes") install.packages("remotes")
remotes::install_github("rlesur/klippy") remotes::install_github("rlesur/klippy")
} }
```
```{r klippy, echo=FALSE, include=TRUE}
klippy::klippy( klippy::klippy(
position = c('top', 'right'), position = c('top', 'right'),
color = "white", color = "white",
...@@ -36,6 +39,7 @@ klippy::klippy( ...@@ -36,6 +39,7 @@ klippy::klippy(
tooltip_success = 'Copied !') tooltip_success = 'Copied !')
``` ```
# Introduction # Introduction
The goal of this practical is to familiarize yourself with R and the RStudio The goal of this practical is to familiarize yourself with R and the RStudio
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment