Displaying 3 results from an estimated 3 matches for "sbat".
Did you mean:
sat
2013 Aug 12
0
drs failed on version 4.1.0rc2: RID Manager failed RID allocation - WERR_BADFILE
...013/08/12 08:48:46.359901, 0]
../source4/smbd/server.c:492(binary_smbd_main)
samba: using 'standard' process model
[2013/08/12 08:48:46.582463, 0]
../source4/lib/tls/tlscert.c:70(tls_cert_generate)
Attempting to autogenerate TLS self-signed keys for https for hostname '
SAMBACK.ec.sbat.be'
[2013/08/12 08:48:47.078082, 0]
../source4/lib/tls/tlscert.c:166(tls_cert_generate)
TLS self-signed keys generated OK
[2013/08/12 11:25:55.632341, 0]
../lib/util/util_runcmd.c:317(samba_runcmd_io_handler)
/usr/sbin/rndc: rndc: connect failed: 127.0.0.1#953: connection refused
root at...
2006 Aug 08
2
Getting data out of a loop
...ratb,
bata, batb)
Df <- data.frame(site, id, mat1)
nn <- levels(Df$id)
Df
nn
rate <- c(2,3,4)
for (i in 1: length(nn)) {
dd<- subset(Df, id==nn[i])
scat <- sum(c(dd$cata,dd$catb), na.rm=T)
sdog <- sum(c(dd$doga,dd$dogb), na.rm=T)
srat <- sum(c(dd$rata, dd$ratb), na.rm=T)
sbat <- sum(c(dd$bata,dd$batb), na.rm=T)
sss <- c(scat,sdog, srat,sbat) * rate[i]
print(sss)
}
2006 Aug 07
0
Trying to do aseries of subsets with function or for loop
I want to calculate the "scat" etc, values for each
level of id, output a vector of these values that is
a <- c(scat, sdog, srat, sbat ) and do an rbind on
them. Each level of id has a different value of
rate.
So far it it looks to me like I can do this by a
series of repeated subsets of Df butI would think that
I should be able to do this with a function but I am
not
having any luck. Thus far, I'm not even sure if the...