我这里有一个小数据集:
structure(list(home_team = structure(1L, .Label = "VGK", class = "factor"),
away_team = structure(1L, .Label = "WSH", class = "factor"),
home_score = 3, away_score = 4, game_score_state = structure(1L, .Label = "3v4", class = "factor")), class = "data.frame", row.names = c(NA,
-1L))
在Shiny中,我想使用此数据创建一个静态boxscore。有关示例,请参见below。
我想知道应该使用哪种输出格式?
htmlOutput
? imageOutput
? textOutput
? uiOutput
? verbatimTextOutput
?