Ivan Bezerra Allaman
unread,Mar 5, 2013, 11:48:46 AM3/5/13Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to shiny-...@googlegroups.com
Good afternoon gentlemen!
I would like to include Greek letters on my table. Here is a part of the script to further elucidate my doubt.
.
.
.
sliderValues <- reactive({
#
data.frame(
Estatísticas = c('mu', #here!
"sigma", #here!
"dqm",
"s2"), #s^2???
Valores = as.character(c(input$mu,
input$sigma,
dqma(),
s2())),
stringsAsFactors=FALSE)
})
output$view <- renderTable({
sliderValues()
})
.
.
.
Thanks!!