View source: R/plot_timeseries.R
plot_timeseries | R Documentation |
Quickly plot the pam data to have an idea of it's quality
plot_timeseries(
dta,
measurements = c("pressure", "light", "acceleration", "temperature", "magnetic"),
...
)
dta |
path where files are stored |
measurements |
a series of measurements logged by the PAM logger which are to be plotted. Currently supports these file extentions: "pressure","light", "acceleration", "temperature" and "magnetic" |
... |
any additional parameters used by graphics::plot |
a plot of PAM data
PAM_data = hoopoe
#plot everything in 2 windows
par(mar=c(2.5,4,0.5,1))
plot_timeseries(PAM_data)
# only subset some measurements
plot_timeseries(PAM_data, measurements = c("light",
"pressure", "acceleration"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.