У меня shinydashboard
настроен на мой локальный компьютер, а не в сети
У меня есть страница введения, которая объясняет, что показывают другие вкладки.
Мне нужно вставить гиперссылку на вкладки «Обзор класса», «Выбор ученика» и «Уровень усилия», чтобы пользователь нажимал на них., он будет направлен на соответствующую вкладку.
Страница введения настроена следующим образом:
tabItem(tabName = "intro",
div(img(src = "http://world.edu/wp-content/uploads/2017/12/moocXX.jpg", height = 200, width = 600), style="text-align: center;"),
fluidRow(
box(
h2("Welcome to the Massive Open Online Course (MOOC) Instructor Dashboard", style="text-align: center;"),
br(),
p(
span("This is an educational dashboard built by ", style = "font-size:20px"),
a(href = "http://crossvalidated.rbind.io/","Jason Baik", style = "font-size:20px"),
span("as part of the Research Experience for Undergraduates (REU) program at", style = "font-size:20px"),
a(href = "https://cs.gmu.edu/~reu/","George Mason University.", style = "font-size:20px")
),
br(),
p(
span("Intended audience: MOOC instructors and administrators", style = "font-size:20px;font-weight:bold")
),
br(),
p(
h4("Explanation of Tabs", style = "font-size:25px"),
span("Overview of Class: Total number of students, dropouts, final grades, and normalized module usage", style = "font-size:20px")
),
p(
span("Student Selector: Filters to customize view of dataset", style = "font-size:20px")
),
p(
span("Effort Level: Information on Weekly Effort Levels", style = "font-size:20px")
),
p(
span("Dropout Definition provided by", style = "font-size:20px"),
a(href = "https://www.researchgate.net/profile/Anja_Lorenz/publication/263543544_Open_Online_Courses_in_the_context_of_higher_education_an_evaluation_of_a_German_cMOOC/links/54941c560cf2e1b6095f97bc/Open-Online-Courses-in-the-context-of-higher-education-an-evaluation-of-a-German-cMOOC.pdf#page=58",
"Halawa, S., Greene, D., & Mitchell, J. (2014). Dropout Prediction in MOOCs using learner activity features. eLearning Papers, 37, 7-16.", style = "font-size:20px")
),