Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
titleTesting divide function
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.

Image Removed

...

Additional reading list


What Can I learn next?

Vectors, Lists, Data frames and Tibbles

...