cjerzak commited on
Commit
0898316
·
verified ·
1 Parent(s): 07c8fc9

Update app.R

Browse files
Files changed (1) hide show
  1. app.R +1 -1
app.R CHANGED
@@ -594,7 +594,7 @@ server <- function(input, output, session) {
594
  # Show X in table
595
  output$covariates_table <- renderDT({
596
  req(X_data())
597
- datatable(as.data.frame(X_data()),
598
  options = list(scrollX = TRUE, pageLength = 5))
599
  })
600
 
 
594
  # Show X in table
595
  output$covariates_table <- renderDT({
596
  req(X_data())
597
+ datatable(as.data.frame(signif(X_data())),
598
  options = list(scrollX = TRUE, pageLength = 5))
599
  })
600