Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R_basis
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LBMC
Hub
formations
R_basis
Commits
55d39ff2
Commit
55d39ff2
authored
2 years ago
by
Carine Rey
Browse files
Options
Downloads
Patches
Plain Diff
update session7
parent
7c8b3a30
No related branches found
No related tags found
1 merge request
!6
Switch to main as default branch
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
session_7/session_7.Rmd
+17
-3
17 additions, 3 deletions
session_7/session_7.Rmd
with
17 additions
and
3 deletions
session_7/session_7.Rmd
+
17
−
3
View file @
55d39ff2
---
---
title: "R.7: String & RegExp"
title: "R.7: String & RegExp"
author: "Laurent Modolo [laurent.modolo@ens-lyon.fr](mailto:laurent.modolo@ens-lyon.fr)"
author: "Laurent Modolo [laurent.modolo@ens-lyon.fr](mailto:laurent.modolo@ens-lyon.fr)"
date: "202
1
"
date: "202
2
"
output:
output:
rmdformats::downcute:
rmdformats::downcute:
self_contain: true
self_contain: true
use_bookdown: true
use_bookdown: true
default_style: "light"
default_style: "light"
lightbox: true
lightbox: true
css: "
http://perso.ens-lyon.fr/laurent.modolo/R/src
/style.css"
css: "
../www
/style
_Rmd
.css"
---
---
```{r include=FALSE}
library(fontawesome)
```
 `r fa(name = "fas fa-house", fill = "grey", height = "1em")`  https://can.gitbiopages.ens-lyon.fr/R_basis/
```{r setup, include=FALSE}
```{r setup, include=FALSE}
rm(list=ls())
rm(list=ls())
knitr::opts_chunk$set(echo = TRUE)
knitr::opts_chunk$set(echo = TRUE)
...
@@ -139,6 +146,13 @@ You need to install the `htmlwidgets` packages to use these functions
...
@@ -139,6 +146,13 @@ You need to install the `htmlwidgets` packages to use these functions
<details><summary>Solution</summary>
<details><summary>Solution</summary>
<p>
<p>
```{r install_htmlwidgets, eval=T, message=F, include=F, echo=F}
if (! require("htmlwidgets")) {
install.packages("htmlwidgets")
}
```
```{r load_htmlwidgets, eval=T, message=F}
```{r load_htmlwidgets, eval=T, message=F}
library(htmlwidgets)
library(htmlwidgets)
```
```
...
@@ -429,4 +443,4 @@ sentences %>%
...
@@ -429,4 +443,4 @@ sentences %>%
str_split("\\s")
str_split("\\s")
```
```
## See you in [R.8: Factors](http://perso.ens-lyon.fr/laurent.modolo/R/session_8/)
## See you in [R.8: Factors](https://can.gitbiopages.ens-lyon.fr/R_basis/session_8/)
\ No newline at end of file
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment