You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The default Shiny toJSON (jsonlite) is very slow compared to rjson's toJSON, which is approximately 25x faster in microbench tests (highcharter object with AAPL YTD quotes).
In my test I found that rjson::toJSON converts NA's to strings, which cannot be plotted by Highcharts (Javascript error 14 in browser console). After removing NA's my charts plot without problems; including OHLC stock, line, stacked bars and scatter.
Suggest to add option to use rjson::toJSON to improve performance.
The text was updated successfully, but these errors were encountered:
The default Shiny toJSON (jsonlite) is very slow compared to rjson's toJSON, which is approximately 25x faster in microbench tests (highcharter object with AAPL YTD quotes).
In my test I found that rjson::toJSON converts NA's to strings, which cannot be plotted by Highcharts (Javascript error 14 in browser console). After removing NA's my charts plot without problems; including OHLC stock, line, stacked bars and scatter.
Suggest to add option to use rjson::toJSON to improve performance.
The text was updated successfully, but these errors were encountered: