Displaying 3 results from an estimated 3 matches for "gague".
Did you mean:
vague
2006 Jan 17
3
[Asterisk-Dev] WAS: click-to-call cleint NOW: XML Manager I/F str aw poll
Disclaimer: Not trolling. Cross-posting to -users to gague support.
-users : Straw poll - if an XML based Manager Interface was avaliable as an
option in asterisk.conf, would that be a good thing, or a stupid thing?
>Have you ever tried initiating a session via XML with a terminal that
>doesn't support backspace...
I'm actually proposing...
2006 Feb 15
0
[CAVPdiscussion] OT: RFC: Canadian Association o f Voice over IP Users (CAVU)
In the latest CAVP conference call, the membership body voted to restrict
membership to VoIP LEC's and to create a seperate membership body for any
other parties interested in contributing to the CAVP's efforts in CRTC
lobbying and providing a unified industry presence in the Canadian telco
industry with a view to VoIP services. Accordingly, I would like to propose
an adjutant association
2006 Dec 26
2
sequential row selection in dataframe
Dear all;
I'm wondering if there is any 'efficient' approach for selecting a
sample of 'every nth rows' from a dataframe. For example, let's use
the dataframe GAGurine in MASS library:
> length(GAGurine[,1])
[1] 314
# select an 75% of the dataset, i.e. = 236 rows, every 2 rows starting
from row 1
> test<-GAGurine[seq(1,314,2),]
> length(test[,1])
[1] 157
#