DT :: renderDataTable excludes "Inf" (infinity) values ​​when displaying

R correctly displays the data table in the console:

Data table

But when rendering a table using the brilliant DT package, it does not display the value "Inf":

Brilliant table

Is there any way to fix this problem?

Here is the code I used:

output$diffgeneExp <- DT::renderDataTable({ DT::datatable(diffGeneExpTable_data(), options = list(scrollX = T)) }) 
+5
source share

All Articles