FlexDashboard Gauge does not appear when I publish shinyapps.io

This is the code I'm using to render the sensor in flexdashboard using runtime: shiny :

 `renderGauge({ select <- reactive({ input$select}) call_data_f <- pbrCalls_Data %>% filter(pbrCalls_Data$village==select()) sum_table <- round(sum(call_data_f$status_match,na.rm = TRUE)/sum(complete.cases(call_data_f$status_match))*100) gauge(sum_table, min = 0, max = 100, symbol = '%', gaugeSectors( success = c(75, 100), warning = c(40, 74), danger = c(0, 39) )) })` 

When I knit locally, the sensor displays correctly, as shown below:

But after posting to shinyapps.io, I can only see 0,% age and 100, no gauge:

0
shiny flexdashboard shinyapps
source share

No one has answered this question yet.

See similar questions:

7
The brilliant app is googleAnalyticsR, causing flexdashboard sensors to lose color

or similar:

7
The brilliant app is googleAnalyticsR, causing flexdashboard sensors to lose color
4
R flexdashboard badly displays server
4
Flexibility Sensor Scaling in R
3
Shiny: Calibrate from flexdashboard in a Shiny app
2
Multi-line plot not showing on flexdashboard on shinyapps.io
one
Change font size / color / in flexdashboard (sensor)
0
Visualizing DT :: datatable in a browser using flexdashboard with shiny
0
Download charts in flexdashboard
0
r: Rendering Kable with brilliant Flexdashboard
0
Shiny flexible panel - no rendering plot

All Articles