try_keep_txt | R Documentation |
Function operator returning a function f that tries to keep text.
try_keep_txt(f)
f |
function to be applied |
try_keep_txt
takes a function f as argument, typically a mathematical
operation such as mean, median, etc. and returns a modified version of it that
will try return a string of unique values in case function f emits a warning.
Useful when aggregating over spectral metadata that has both numeric values
(which you want to aggregate) and text values, which you want to keep.
modified function f (f').
Jose Eduardo Meireles
library(spectrolab) g = try_keep_txt(mean) g(c(1, 2)) g(c("a", "b"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.