The code below returns "http://www.yahoo.com" when I knit. How do I format it to just show Yahoo
with a clickable hyperlink?
Code Chunk -
count <- 3 cutoff <- 4 espn <- "http://espn.com" yahoo <- "http://www.yahoo.com"
In Line -
r if(count > cutoff){espn} else {yahoo}