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

Questions

  • Which method do you prefer?

You try it!

YOUR FIRST CHALLENGE

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

Solution

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