I can't seem to get any output (plots, tables, etc.) to show up in the HTML Markdown when I knit my code. Here's an example of my code. Do you know why it would not be showing the output in the Markdown file?
val_lab(hsb$RACE) = num_lab("
1 Hispanic
2 Asian
3 Black
4 White
")
head(hsb$RACE)
titletext='Racial Breakdown of High School Students'
sourcetext='Source: National Opinion Research Center (1980)'
barNom=baseNom + geom_bar(stat = 'identity') + labs(title = titletext,
caption = sourcetext)
barNom
I am using {r, eval=FALSE} in each code chunk. I thought the issue might have to do with the "eval=FALSE" rule, but I removed it and changed it multiple times and still did not get any output when I would knit the code.
Hi there,
I can't seem to get any output (plots, tables, etc.) to show up in the HTML Markdown when I knit my code. Here's an example of my code. Do you know why it would not be showing the output in the Markdown file?
Part 2: Bar Charts
I am using {r, eval=FALSE} in each code chunk. I thought the issue might have to do with the "eval=FALSE" rule, but I removed it and changed it multiple times and still did not get any output when I would knit the code.
Thanks, Taylor Bailey