| bind_dpcr-methods | R Documentation | 
A convinient wrapper around cbind and
rbind tailored specially for binding multiple objects
containing results from digital PCR experiments.
bind_dpcr(input, ...)
| input | an object of class  | 
| ... | objects of class  | 
In case of adpcr or dpcr objects, bind_dpcr works
analogously to cbind, but without recycling. In case on
unequal length, shorter objects will be filled in with additional NA
values. The original length is always preserved in n slot.
bind_dpcr automatically names binded experiments using format
x.y, where x is number of object passed to function and
y is a number of experiment in a given object.
An object of class adpcr or
dpcr, depending on the input.
Because bind_dpcr calls do.call function,
binding together at the same time more than 500 objects can lead to
'stack overflow' error.
Michal Burdukiewicz
Opposite function: extract_run
bigger_array <- sim_adpcr(400, 765, 1000, pos_sums = FALSE, n_panels = 5) smaller_array <- sim_adpcr(100, 700, 1000, pos_sums = FALSE, n_panels = 3) bound_arrays <- bind_dpcr(bigger_array, smaller_array) smaller_droplet <- sim_dpcr(m = 7, n = 20, times = 5, n_exp = 2) bigger_droplet <- sim_dpcr(m = 15, n = 25, times = 5, n_exp = 4) biggest_droplet <- sim_dpcr(m = 15, n = 35, times = 5, n_exp = 1) bound_droplets <- bind_dpcr(smaller_droplet, bigger_droplet, biggest_droplet)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.