Displaying 4 results from an estimated 4 matches for "tnsofr".
Did you mean:
tnsoft
2000 Jan 14
0
Network Busy Error
...that the DNS lookup that was
happening failed quickly rather than trying to search the greater web.
Anyway it works for me now without a hitch.
Hope this gives you some further ideas.
Grady Vincent
Thinkware Solutions Pty Ltd
----- Original Message -----
From: Chris Edwards <Chris.Edwards@tnsofres.com>
To: Multiple recipients of list SAMBA <samba@samba.org>
Sent: Saturday, January 15, 2000 3:08 AM
> Dear List
> This is probably not the way to go about getting some help with my problem
> and if I've screwed up, then I apologise.
>
>
> Here is my problem ......
2000 Jan 14
0
No subject
...r 54: The network is currently busy processing other requests or it is
out of resources. Try again later"... blah blah
One thought I had was is there is some sort of timeout occuring seeing
as NT works fine.
Any views greatly appreciated
thank you.
chris
chris edwards
chris.edwards@tnsofres.com
2000 Aug 29
0
SV: short way
This should do what you want:
# construct a data.frame d
L3 <- LETTERS[1:3]
str(d <- data.frame(cbind(x=1, y=1:10), ch=sample(L3, 10, repl=TRUE)))
d
# replace y-value in d, where y=5
d$y[d$y==5] <- 100
d
Regin
-----Oprindelig meddelelse-----
Fra: Pesl Thomas [mailto:thomas.pesl at arcs.ac.at]
Sendt: 29. august 2000 14:02
Til: R-Help (E-Mail)
Emne: [R] short way
i want to replace
2000 Sep 20
1
SV: sample from contingency table
I have had the same problem and I wrote this function
rmulti <- function(n, size, p)
{
NrDim <- length(p)
if(NrDim<2) stop("The simulated variabel has to be at least
2-dimensional")
res <- matrix(data=NA, nrow=n, ncol=NrDim)
p <- p/sum(p)
TempSize <- size
for(i in 1:NrDim)
{
TempP <- p[i]/sum(p[i:NrDim])
TempBin <- rbinom(n=n, size=TempSize,