Skip to content
Snippets Groups Projects
Commit 310e444c authored by Laurent Modolo's avatar Laurent Modolo
Browse files

Merge branch 's1b_slide23Fix' into 'master'

Fixed s1b-slide 23 code went out of the slide

See merge request LBMC/hub/formations/R_basis!1
parents 7772b8fd bc3698a3
No related branches found
No related tags found
No related merge requests found
......@@ -345,7 +345,7 @@ rosette[13]
## Matrix
In R matrix are two dimensional vectors
In R matrices are two dimensional vectors
```R
matrix_example <- matrix(1:(6*3), ncol=6, nrow=3)
......@@ -368,10 +368,12 @@ matrix_example[2, 3]
## DataFrame
In R `data.frame` are table type with mixed type
In R `data.frame` are a table type with mixed type
```R
data_frame_example <- data.frame(numbers=1:26, letters=letters, LETTERS=LETTERS)
data_frame_example <- data.frame(numbers=1:26,
letters=letters,
LETTERS=LETTERS)
data_frame_example
```
......
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