Description Usage Arguments Value Examples
View source: R/generalized_log.R
generalized_log
transforms specified observation variables using x = log( (x + sqrt(x ^ 2 + offset ^ 2 )) / 2 ).
1 | generalized_log(population, variables, offset = 1)
|
population |
tbl with grouping (metadata) and observation variables. |
variables |
character vector specifying observation variables. |
offset |
optional offset parameter for the transformation. |
transformed data of the same class as population
.
1 2 3 4 5 6 | population <- tibble::tibble(
Metadata_Well = c("A01", "A02", "B01", "B02"),
Intensity_DNA = c(8, 20, 12, 32)
)
variables <- c("Intensity_DNA")
generalized_log(population, variables)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.