powered by
Apply the given function to every pair in the given datalist. Function either symmetrical (i.e. fun(x,y) == fun(y,x)) or assymmetrical (i.e. fun(x,y) != fun(y,x)).
apply.symm(.datalist, .fun, ..., .diag = NA, .verbose = T)apply.asymm(.datalist, .fun, ..., .diag = NA, .verbose = T)
apply.asymm(.datalist, .fun, ..., .diag = NA, .verbose = T)
List with some data.frames.
Function to apply, which return basic class value.
Arguments passsed to .fun.
Either NA for NA or something else != NULL for .fun(x,x).
if T then output a progress bar.
Matrix with values M[i,j] = fun(datalist[i], datalist[j])
# NOT RUN { # equivalent to intersectClonesets(immdata, 'a0e') apply.symm(immdata, intersectClonesets, .type = 'a0e') # }
Run the code above in your browser using DataLab