| mean_list | R Documentation |
taking mean over a list of nested lists
mean_list(lls, weights = NULL)
lls |
a list |
weights |
weights of each list |
a list of nested lists
ls <- list(
list(a = 1, b = 2, t = "nig", ll = list(a = 1, b = 2, w = "ab")),
list(a = 3, b = 5, t = "nig", ll = list(a = 1, b = 6, w = "ab")),
list(a = 5, b = 5, t = "nig", ll = list(a = 4, b = 2, w = "ab"))
)
mean_list(ls)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.