R/plotting.geoChronR.R
plotTimeseriesEnsLines.Rd
Plot an ensemble timeseries as a set of lines. Useful for displaying a handful of ensemble members to characterize individual paths.
plotTimeseriesEnsLines(
add.to.plot = ggplot(),
X,
Y,
alp = 0.2,
color = "blue",
n.ens.plot = 100,
na.rm = TRUE
)
A ggplot object to add these lines to. Default is ggplot() .
A LiPD variable list to plot, including values, units, names, and more
A LiPD variable list to plot, including values, units, names, and more
Line transparency
Either 1) A line color (following ggplot rules) to use for all lines (e.g., "blue"), 2) An RColorBrewer pallette to repeat over the lines (e.g. "Blues") or 3) a vector specifying the color for all lines (e.g., c("red","white","blue"))
Whats the maximum number of lines to plot?
Remove NAs from X and Y? Set to FALSE to preserve line breaks where data are missing. (default = TRUE)
A ggplot object
Other plot:
plotChron()
,
plotChronEns()
,
plotChronEnsDiff()
,
plotCorEns()
,
plotHistEns()
,
plotLine()
,
plotModelDistributions()
,
plotPcaEns()
,
plotPvalsEnsFdr()
,
plotRegressEns()
,
plotScatterEns()
,
plotScreeEns()
,
plotSpectraEns()
,
plotSpectrum()
,
plotSummary()
,
plotSummaryTs()
,
plotTimeseriesEnsRibbons()
,
plotTimeseriesStack()
,
plotTrendLinesEns()