lheatmap | R Documentation |
draws a rectangular heatmap (e.g. spectrogram)
lheatmap(
x,
y,
z,
col = luna.globals$turbo.colors(100),
mt = "",
f = rep(T, length(z)),
zero = rep(F, length(z)),
xlines = NULL,
ylines = NULL,
zlim = NULL,
win = NULL,
legend = NULL
)
x |
x-axis values |
y |
y-axis values, of |
z |
z-axis values, of |
col |
100-valued color palette, defaults to |
mt |
main title (string) |
f |
filter: boolean values of length equal to |
zero |
boolean vector of length equal to |
xlines |
draw vertical lines along the x-axis at these values (default: none) |
ylines |
draw horizontal lines along the y-axus at these values (default: none) |
zlim |
set range for Z axis (defaults to observed range in Z) |
win |
winsorize Z at this percentile, e.g. 0.05 |
legend |
integer: return Z quantiles at this many uniformly-spaced positions |
plot is generated in the current graphics device; no return value unless legend is set
## Not run:
k <- ldb("out.db")
d <- k$PSD$CH_E_F
lheatmap(d$E, d$F, 10*log10(d$PSD))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.