Displaying 20 results from an estimated 6000 matches similar to: "samba server with 98 clients"
2018 Jun 08
4
Subsetting the "ROW"s of an object
> On Jun 8, 2018, at 11:52 AM, Hadley Wickham <h.wickham at gmail.com> wrote:
>
> On Fri, Jun 8, 2018 at 11:38 AM, Berry, Charles <ccberry at ucsd.edu> wrote:
>>
>>
>>> On Jun 8, 2018, at 10:37 AM, Herv? Pag?s <hpages at fredhutch.org> wrote:
>>>
>>> Also the TRUEs cause problems if some dimensions are 0:
>>>
2018 Aug 13
1
substitute() on arguments in ellipsis ("dot dot dot")?
Since you're already using bang-bang ;)
library(rlang)
dots1 <- function(...) as.list(substitute(list(...)))[-1L]
dots2 <- function(...) as.list(substitute(...()))
dots3 <- function(...) match.call(expand.dots = FALSE)[["..."]]
dots4 <- function(...) exprs(...)
bench::mark(
dots1(1+2, "a", rnorm(3), stop("bang!")),
dots2(1+2, "a",
2003 Jun 19
1
Path analysis
Dear all,
I'm new R's user and I'm looking for package dealling with Path analysis. Does it exist ? Where ?
Best,
Regis Martin PhD Student
Laboratory of Altitutdinal Population Biology UMR CNRS 5553
Universté de Savoie
Bât. Belledonnes
00 33 (0)4 79 75 86 44
regis.martin at univ-savoie.fr
2018 Jun 08
0
Subsetting the "ROW"s of an object
Hmmm, yes, there must be some special case in the C code to avoid
recycling a length-1 logical vector:
dims <- c(4, 4, 4, 1e5)
arr <- array(rnorm(prod(dims)), dims)
dim(arr)
#> [1] 4 4 4 100000
i <- c(1, 3)
bench::mark(
arr[i, TRUE, TRUE, TRUE],
arr[i, , , ]
)[c("expression", "min", "mean", "max")]
#> # A tibble: 2 x 4
2018 Jun 08
3
Subsetting the "ROW"s of an object
> On Jun 8, 2018, at 10:37 AM, Herv? Pag?s <hpages at fredhutch.org> wrote:
>
> Also the TRUEs cause problems if some dimensions are 0:
>
> > matrix(raw(0), nrow=5, ncol=0)[1:3 , TRUE]
> Error in matrix(raw(0), nrow = 5, ncol = 0)[1:3, TRUE] :
> (subscript) logical subscript too long
OK. But this is easy enough to handle.
>
> H.
>
> On
2018 Sep 21
1
Bias in R's random integers?
On 9/20/18 5:15 PM, Duncan Murdoch wrote:
> On 20/09/2018 6:59 AM, Ralf Stubner wrote:
>> It is difficult to do this in a package, since R does not provide access
>> to the random bits generated by the RNG. Only a float in (0,1) is
>> available via unif_rand().
>
> I believe it is safe to multiply the unif_rand() value by 2^32, and take
> the whole number part as an
2018 Jun 08
3
Subsetting the "ROW"s of an object
> On Jun 8, 2018, at 1:49 PM, Hadley Wickham <h.wickham at gmail.com> wrote:
>
> Hmmm, yes, there must be some special case in the C code to avoid
> recycling a length-1 logical vector:
Here is a version that (I think) handles Herve's issue of arrays having one or more 0 dimensions.
subset_ROW <-
function(x,i)
{
dims <- dim(x)
index_list <-
2005 Nov 23
5
ntlm_auth from pppd help
Hello all,
I am working on a VPN solution using FC3-2.6.12-1.1381 - openswan
2.4.4-1 - l2tpd 0.69-13 - pppd 2.4.3-5 - samba 3.0.10-1.
When attempting a connection from an XP-SP2 box pppd dies without
authenticating the user (see below).
I have run ntlm_auth from the command line with success.
What tools can I use to identify the failure?
Is there an obvious error in the ppp options file?
2018 Jun 08
0
Subsetting the "ROW"s of an object
On Fri, Jun 8, 2018 at 11:38 AM, Berry, Charles <ccberry at ucsd.edu> wrote:
>
>
>> On Jun 8, 2018, at 10:37 AM, Herv? Pag?s <hpages at fredhutch.org> wrote:
>>
>> Also the TRUEs cause problems if some dimensions are 0:
>>
>> > matrix(raw(0), nrow=5, ncol=0)[1:3 , TRUE]
>> Error in matrix(raw(0), nrow = 5, ncol = 0)[1:3, TRUE] :
>>
2018 Jun 08
0
Subsetting the "ROW"s of an object
On Fri, Jun 8, 2018 at 2:09 PM, Berry, Charles <ccberry at ucsd.edu> wrote:
>
>
>> On Jun 8, 2018, at 1:49 PM, Hadley Wickham <h.wickham at gmail.com> wrote:
>>
>> Hmmm, yes, there must be some special case in the C code to avoid
>> recycling a length-1 logical vector:
>
>
> Here is a version that (I think) handles Herve's issue of arrays
2003 Apr 05
1
samba, ncurses, and sysV printing?
Dear SAMBA Group,
I've playing around with getting SAMBA to do things for me.
I have an Ultra-1 running Solaris 2.6 and a Win-XP system with
a Canon BJC-2000 printer attached to it.
I'm trying to get the SUN to print to the printer on the XP box.
I have followed various instructions but now when I print as "root"
with "lp -d bjc <file>" I get an email message
2018 Sep 20
5
Bias in R's random integers?
On 9/20/18 1:43 AM, Carl Boettiger wrote:
> For a well-tested C algorithm, based on my reading of Lemire, the unbiased
> "algorithm 3" in https://arxiv.org/abs/1805.10941 is part already of the C
> standard library in OpenBSD and macOS (as arc4random_uniform), and in the
> GNU standard library. Lemire also provides C++ code in the appendix of his
> piece for both this and
2003 Nov 16
2
prevent conversion to factors in aggregate?
I've been trying to figure out how to prevent a column that is the result of
an aggregate function call so that I can use it in further calculations. For
example, I would like to aggregate the expf for the data.frame by sp
(character) and dbh (double d=rounded to integer) using the command:
> st2 <- aggregate( ntrs$expf, by=list(sp=ntrs$sp,dbh=ntrs$dbh), sum )
> st2$expf <- st2$x
2018 Aug 13
2
substitute() on arguments in ellipsis ("dot dot dot")?
Interestingly,
as.list(substitute(...()))
also works.
On Sun, Aug 12, 2018 at 1:16 PM, Duncan Murdoch
<murdoch.duncan at gmail.com> wrote:
> On 12/08/2018 4:00 PM, Henrik Bengtsson wrote:
>>
>> Hi. For any number of *known* arguments, we can do:
>>
>> one <- function(a) list(a = substitute(a))
>> two <- function(a, b) list(a = substitute(a), b =
2004 Jan 12
0
About - Add a preamble to documentation
Hi, I need to use other user than root for join the pc's to the Samba 3 PDC
I Try the groupmap option for this:
[root@bch:/]# /usr/local/samba/bin/net groupmap list
System Operators (S-1-5-32-549) -> -1
Replicators (S-1-5-32-552) -> -1
Guests (S-1-5-32-546) -> -1
Domain Users (S-1-5-21-107229157-1068619686-3350107674-513) -> -1
Domain Admins
2007 Jul 16
2
print tables to figure in R
Doe anyone know of a way to print nice-looking, printer-friendly tables
directly in the R plot window? This would be very handy for examining
preliminary results from frequently used routines. I've hunted for this
with no luck. All anyone seems to do is export text files to excel for
formatting, or use the print(bla) function which just calls the numbers
at the command line. There must be
2024 Jan 30
1
R interpreting numeric field as a boolean field
Hi Bert,
Below the information you asked me for:
nrow(mydataset)
[1] 2986276
########
sapply(mydataset, "class")
$`Transit Date`
[1] "POSIXct" "POSIXt"
$`Market Segment`
[1] "character"
$`N?mero de Tr?nsitos`
[1] "numeric"
$`Tar No`
[1] "character"
$`Beam Range (Operations)`
[1] "character"
$`Operational Vessel Ranges
2011 Mar 30
2
Lists of tables and conditional statements
Hi R-users,
I have a list containing numeric tables of differing row length. I want to make a new list that contains only rows from tables with a "Sum" greater than 3, plus the names of each table. I was wondering whether there is an elegant way to do this using apply of related functions as this list has many thousands of such tables.
Here is an example of the list
$AACS
2006 Jan 24
13
Nortel Meridian Opt 81C and PRI
We've been trying unsuccessfully to connect our Meridian Option 81C to a
TE110P via PRI. We've followed the directions in
asterisk-meridian-a1.pdf (link on
http://www.voip-info.org/wiki/view/Asterisk+legacy+integration), but it
doesn't seem to work on our 81C (even though many, many users report it
works very well on Option 11's).
Has anyone had any success in getting the above
2002 Oct 15
1
strange behavior on file copy from Novel
I am experienceing very strange behavior when copying files from Novel
shares to samba shares. This behavior is evident when using windows
explorer to copy files from a Novel network share to my samba shares, not
a. copying a file from my local partitions to the samba share
b. copying a file from a remote windows share.
Is anyone aware of strange Novel settings that would prevent copying files