Skip to content
Snippets Groups Projects
Commit bc3698a3 authored by Romain Bulteau's avatar Romain Bulteau :speech_balloon:
Browse files

Fixed s1b-slide 23 code went out of the slide

parent ff326ec9
No related branches found
No related tags found
No related merge requests found
......@@ -341,7 +341,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)
......@@ -364,10 +364,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