Displaying 2 results from an estimated 2 matches for "new_fram".
Did you mean:
new_from
2013 Jun 20
1
Asterisk Queue Frame
What happens when we increase the queue frame size in channels.c
if ((queued_frames + new_frames > 128 || queued_voice_frames +
new_voice_frames > 96)) {
Be default it is 128 and 96 if i increase it to 256 and 192 what will
happen? will it impact to default behavior?
Regards,
Gopal.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.digi...
2007 Sep 19
2
function on factors - how best to proceed
...his worked nice when the input were columns from a data frame created
from vectors.
I have also tried the different apply-functions, although I am
uncertain of which one would be appropriate here.
I would like to use this function to create a new data frame which
would look something like this:
new_frame = (gctable$feature, gctable$gene, gctable$kingdom, gctable$grp, gctable$gc_content, percentdistance(gctable))
I am uncertain of how to proceed. Should I deconstruct the data frame
within the function, or should I get just the numbers out of the
factors and input that into the function? Or is my s...