Describe a situation where you would prefer to use paste0() over paste() in R.

  • None of the above
  • When you want to concatenate a large number of strings
  • When you want to concatenate strings with a separator
  • When you want to concatenate strings without a separator
You would prefer to use 'paste0()' over 'paste()' in R when you want to concatenate strings without a separator. The 'paste0()' function is a variation of the 'paste()' function that does not include a separator by default.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *