Recall & Review
beginner
What is inline R code in R Markdown?
Inline R code lets you run R commands directly inside text. It shows the result right in the sentence when you knit the document.
Click to reveal answer
beginner
How do you write inline R code in R Markdown?
Use a single backtick, then r, then your R code, and close with a backtick. Like this:
`r 2 + 2`.Click to reveal answer
beginner
What will this inline R code output?
`r paste('Hello', 'World')`It will output: Hello World inside the text where the code is placed.
Click to reveal answer
intermediate
Why use inline R code instead of writing results manually?
Inline R code keeps your document up-to-date automatically. If data or calculations change, the output updates when you knit again.
Click to reveal answer
intermediate
Can inline R code include complex expressions or just simple values?
Inline R code can include any R expression, from simple numbers to complex functions, as long as it returns a value to show.
Click to reveal answer
How do you write inline R code in R Markdown?
✗ Incorrect
Inline R code uses a single backtick, then r, then the code, and closes with a backtick.
What does inline R code do when you knit an R Markdown document?
✗ Incorrect
Inline R code runs and shows the result directly in the text output.
Which of these is a valid inline R code example?
✗ Incorrect
Only option D uses the correct inline R code syntax.
What happens if the inline R code contains an error?
✗ Incorrect
Errors in inline R code cause knitting to stop and show an error.
Why is inline R code useful in reports?
✗ Incorrect
Inline R code keeps results current by running code each time you knit.
Explain how to use inline R code in an R Markdown document and why it is helpful.
Think about how you mix code and text in one sentence.
You got /3 concepts.
Describe a situation where inline R code would save you time compared to writing results manually.
Imagine you have a report with numbers that change often.
You got /3 concepts.