limit_fun_na | R Documentation |
Get data limiting function to use in rglactions
as 'trans_fun' to transform data. This is typically used to limit the colorbar in a plot to a certain range. This is similar to clip.data
, but uses absolute values instead of percentiles to clip.
limit_fun_na(vmin, vmax)
vmin |
numerical scalar, the lower border. Data values below this will be set to 'NA' in the return value. |
vmax |
numerical scalar, the upper border. Data values above this will be set to 'NA' in the return value. |
a function that takes as argument the data, and clips it to the requested range. I.e., values outside the range will be set to 'NA'. Designed to be used as rglactions$trans_fun
in vis functions, to limit the colorbar and data range.
This is useful for thresholding stuff like t-value maps. All values outside the range will be displayed as the background color.
limit_fun_na_inside
which will set the values inside the range to 'NA'.
rglactions = list("trans_fun"=limit_fun_na(2,3));
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.