C'è un modo per usare diversi tipi di grafici con i dygraph in R come sul sito web dei dygraphs stesso http://dygraphs.com/tests/plotters.html? C'è un modo per accedere a questi quando si utilizza R? Un semplice esempio tratto dal sito Web di dygraphs per R potrebbe essere:Creare un plotter in R usando il pacchetto dygraphs
library(dygraphs)
library(dplyr)
lungDeaths <- cbind(mdeaths, fdeaths)
dygraph(lungDeaths)
# How to choose a different type of plot?
/edit. Così ho scoperto che puoi usare plotter personalizzati con dygraph come qui: http://blog.dygraphs.com/2012/08/introducing-custom-plotters.html. C'è un modo per farlo in R?
provare il pacchetto 'ggplot2'. –
Conosco ggplot2 ma voglio usarlo in modo interattivo in un file html. Anche la funzione di sincronizzazione è molto attraente per me! Voglio avere un selettore Range fornito da dygraph come questo: http://rstudio.github.io/dygraphs/gallery-range-selector.html – pfuhlert