search for: quag

Displaying 3 results from an estimated 3 matches for "quag".

Did you mean: quad
2010 Jun 13
5
Count of unique factors within another factor
...but can't get a count for each ?unit?. > data=read.csv("C:/Desktop/sr_sort_practice.csv") > attach(data) > data[1:10,] unit species 1 123 ACMA 2 123 LIDE 3 123 LIDE 4 123 SESE 5 123 SESE 6 123 SESE 7 345 HEAR 8 345 LOHI 9 345 QUAG 10 345 TODI?.. > sr.unique<- lapply (data, unique) $unit [1] 123 345 216 $species [1] ACMA LIDE SESE HEAR LOHI QUAG TODI UMCA ARSP LIDE > sapply (sr.unique,length) unit species 3 10 Then, I get stuck here because this unique species count is not given for e...
2012 Nov 30
3
segfault debugging
Hello everybody, I have written a script with two inline cfunctions. The script crashes from time to time with: ? ?*** caught segfault *** ? address 0x10, cause 'memory not mapped' The crashs happen within R code after the cfunctions were executed. Nevertheless I think that the pointers in my cfunctions are not used correctly. I tried to find some examples for debugging tools. I found
2006 Sep 07
13
How to handle config files used by a combination of classes?
...config file must be built for a combination of possible classes? Take for example the amd automounter''s configuration file, which on Debian is found at /etc/am-utils/amd.conf. This is an INI style file which looks like: [fsname1] param1=foo param2=bar [fsname2] param1=baz param2=quag In my case I have one class of machines that should automount "fsname1", one that should mount "fsname2" and one that should mount both. In CFEngine I have used the file editting commands (eg "BeginGroupIfNoSuchLine") to add in the appropriate stanza for those classe...