Description Usage Arguments Value
This function takes a vector of numeric values as well as an interval [new_min, new_max] that the numeric values will be scaled (normalized) to.
1 | .scale_list_to_interval(the_list, new_min, new_max)
|
the_list |
A vector of numeric values. |
new_min |
Minimum value for the new interval. |
new_max |
Maximum value for the new interval. |
A data frame with fusion link data compatible with RCircos::RCircos.Link.Plot()
# @examples # Apparently examples shouldn't be set on private functions list012 <- c(0,1,2) .scale_list_to_interval(list012, 1, 3) # [1] 1 2 3
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.