plot_interactive_timeseries: Plot PAM data as an interactive timeseries

View source: R/plot_interactive_timeseries.R

plot_interactive_timeseriesR Documentation

Plot PAM data as an interactive timeseries

Description

This opens a java dygraph application which allows the user to zoom in and out. In Rstudio it will open in the viewer pane and in base R in an html readers. Note that this can be a bit slow

Usage

plot_interactive_timeseries(
  dta,
  from = dta$light$date[1],
  to = dta$light$date[length(dta$light$date)],
  to_plot = names(dta)
)

Arguments

dta

PAM data to be plotted

from

date that plotting starts

to

date that plotting ends

to_plot

names of the variables to plot. For now this includes light, pressure, acceleration and temperature

Value

a plot of all the measurements

References

Vanderkam, D., Allaire, J., Owen, J., Gromer, D., Shevtsov, P. and Thieurmel, B., dygraphs: Interface to Dygraphs Interactive Time Series Charting Library, 2015. URL http://CRAN. R-project. org/package= dygraphs. R package version 0.4, 5, p.7.

Examples

## Not run: 
#load dummy data
data(hoopoe)
PAM_data=hoopoe

# This bit is for Rstudio users to prevent html from opening in Viewer pane and crashing
# It opens in web browser instead
backup_options <- options()
options(viewer=NULL)

# Plot interactive graphics
plot_interactive_timeseries(dta = PAM_data)

# restore Rstudio settings from before plot
options(backup_options)


## End(Not run)


KiranLDA/PAMLr documentation built on March 6, 2023, 1:40 p.m.