I am producing a time series plot with Josh Kunst's excellent highcharter
library in R.
Using this data:
> dput(t)
structure(c(2, 2, 267822980, 325286564, 66697091, 239352431,
94380295, 1, 126621669, 158555699, 32951026, 23, 108000151, 132505189,
29587564, 120381505, 25106680, 117506099, 22868767, 115940080,
22878163, 119286731, 22881061), .Dim = c(23L, 1L), index = structure(c(1490990400,
1490994000, 1490997600, 1491001200, 1491004800, 1491008400, 1491012000,
1491026400, 1491033600, 1491037200, 1491040800, 1491058800, 1491062400,
1491066000, 1491069600, 1491073200, 1491076800, 1491109200, 1491112800,
1491120000, 1491123600, 1491156000, 1491159600), tzone = "US/Mountain", tclass = c("POSIXct",
"POSIXt")), class = c("xts", "zoo"), .indexCLASS = c("POSIXct",
"POSIXt"), tclass = c("POSIXct", "POSIXt"), .indexTZ = "US/Mountain", tzone = "US/Mountain", .CLASS = "double", .Dimnames = list(
NULL, "count"))
I can make this graph
with
highcharter::highchart() %>% hc_add_series_xts(t)
But I get this warning:
'hc_add_series_xts' is deprecated.
Use 'hc_add_series' instead.
So, being the easy-going type, I do exactly that and with
highcharter::highchart() %>% hc_add_series(t) %>% hc_xAxis(type = 'datetime')
I make this graph:
The problem is I really like that little dygraph
-style window and slider at the bottom of the first graph, not to mention that it orients the labels on the right y-axis, etc.
Other than "please don't deprecate that function" how can I go about making sure the second output - using the suggested and soon, it seems, only function - looks like the first?
来源:https://stackoverflow.com/questions/43187513/highcharter-deprecated-functions-output-is-different-than-suggested