Shinyapps.io and incorrect rendering of missing values

I have a flexdashboard with shiny components that I've published to shinyapps.io

When I run the document locally, missing values in the tables appear as "—" (see below).

Picture2

However, when I publish the document to shinyapp.io, the missing values appear as "<97>" (see below).

Picture3

I have tried specifying the missing values as NA with na_if() but I get the same outcome and I have also tried specifying "—" as na.strings when I created the table:

data <- read.table(text = readLines("file.csv", warn = FALSE), header = TRUE,sep = ",", stringsAsFactors = FALSE, na.strings = "—")

Is there any way to specify how missing values should be rendered upon publishing of a .rmd file? What trick am I missing?

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.