...
Code Block | ||||
---|---|---|---|---|
| ||||
result1 <- divide(5,0) Error in divide(5, 0) : you cannot divide by 0! result2 <- divide(78,4) print(result2) [1] 19.5 |
Using R Notebooks
R notebooks can create some report in various format. Some textual content can be added alongside some R code. You can create a R Notebook using the icon shown below. Sections of the reports are formatted using the R markdown markup language.
...
Additional reading list
What Can I learn next?
Vectors, Lists, Data frames and Tibbles
...