Show the code
<- "hello, R markdown and RPubs!"
smpCode
cat(smpCode)
hello, R markdown and RPubs!
Update the title with your information. Make sure to include identification information so that we know it is your submission.
Also update the author name and date accordingly.
Check out the Source Code from the top-right corner </>Code
menu.
In the following R code chunk, load_packages
is the code chunk name. include=FALSE
suggests that the code chunk will run, but the code itself and its outputs will not be included in the rendered HTML. echo=TRUE
in the following code chunk suggests that the code and results from running the code will be included in the rendered HTML.
Don’t use a single chunk for the entire assignment. Break it into multiple chunks.
<- "hello, R markdown and RPubs!"
smpCode
cat(smpCode)
hello, R markdown and RPubs!
Quarto markdown is different from R markdown in terms of chunk options. See chunk options at Quarto website.
print("This is the new code chunk options available in Quarto Markdown")
[1] "This is the new code chunk options available in Quarto Markdown"