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

HTML <div>

Challenge

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

Solution

paste("hello", "there")
"hello there"

{dovetail}

Challenge

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

paste("hello", "there")

Solution

"hello there"

pandoc fenced div

Challenge

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

paste("hello", "there")
"hello there"

HTML <div>

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

paste("hello", "there")
"hello there"

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

paste0("mono", "rail")
"monorail"

{dovetail}

library(dovetail)

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

paste("hello", "there")

Solution

"hello there"

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

Solution

paste0("mono", "rail")
"monorail"

pandoc fenced div

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

paste("hello", "there")
"hello there"

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

paste0("mono", "rail")
"monorail"