This is package is to create a FAQ (Frequently Asked Questions) page for Shiny application with desired data.frame.
Simply create a data frame with question
column and answer
column. Then put this data frame into faq()
function, we will get a nice FAQ page.
library(faq)
data.frame(
df <-question = c("Question1", "Question2", "Question3"),
answer = c("answer for question1",
"question2 answer",
"answer3")
)::faq(data = df, elementId = "faq", faqtitle = "Frequently Asked Questions") faq