September 2018
Beginner
206 pages
4h 27m
English
Herein, we will use paste() and paste0() with character objects, character strings, and integers. In order to do so, the following steps have to be executed:
a <- "R" b <- "is" c <- "fun"
paste(a, b, c, "!")
paste0(a, b, c, "!")
paste(a, b, c, "x", 10)
Output: The following is the output we get upon executing the code mentioned in Step 2:
The following is the output we get upon executing the code mentioned ...
Read now
Unlock full access