This lesson is still being designed and assembled (Pre-Alpha version)

Questions

  • Which method do you prefer?

You try it again!

Create the following nested challenge using <div> tags, {dovetail}, and fenced divs:

Please place your answers in this answer sheet and use the same text editor you would normally use for editing Carpentries lesson materials.

Challenge

Use the paste() function to concatenate the strings “hello” and “there” in R

School Solution

paste("hello", "there")
[1] "hello there"

Great! Now use paste0() to paste together “mono” and “rail” to make “monorail”

Fast Solution

paste0("mono", "rail")
[1] "monorail"