Displaying 20 results from an estimated 10000 matches similar to: "return() undocumented (PR#6424)"
2016 Sep 23
2
Undocumented 'use.names' argument to c()
In S-PLUS 3.4 help on 'c' (http://www.uni-muenster.de/ZIV.BennoSueselbeck/s-html/helpfiles/c.html), there is no 'use.names' argument.
Because 'c' is a generic function, I don't think that changing formal arguments is good.
In R devel r71344, 'use.names' is not an argument of functions 'c.Date', 'c.POSIXct' and 'c.difftime'.
Could
2016 Sep 23
2
Undocumented 'use.names' argument to c()
I'd vote for it to stay. It could of course suprise someone who'd
expect c(list(a=1), b=2, use.names = FALSE) to generate list(a=1, b=2,
use.names=FALSE). On the upside, is the performance gain from using
use.names=FALSE. Below benchmarks show that the combining of the
names attributes themselves takes ~20-25 times longer than the
combining of the integers themselves. Also, at no
2016 Sep 25
1
Undocumented 'use.names' argument to c()
>From comments in http://stackoverflow.com/questions/24815572/why-does-function-c-accept-an-undocumented-argument/24815653 : The code of c() and unlist() was formerly shared but has been (long time passing) separated. From July 30, 1998, is where do_c got split into do_c and do_unlist.
With the implementation of 'c.Date' in R devel r71350, an argument named 'use.names' is
2002 Feb 26
1
Locale problems on Solaris
Hi there.
With OpenSSH 3.0.2p1 on Solaris, the locale does not appear to get set
correctly at login, as it does with, say telnet:
/etc/default/init:
TZ=GB
CMASK=022
LC_COLLATE=en_GB.ISO8859-1
LC_CTYPE=en_GB.ISO8859-1
LC_MESSAGES=C
LC_MONETARY=en_GB.ISO8859-1
LC_NUMERIC=en_GB.ISO8859-1
LC_TIME=en_GB.ISO8859-1
When logging in via SSH:
scot /home/scot > locale
LANG=
2003 Mar 10
2
graphics backgrounds from gray to white in png()
Hi,
I'm trying to make a png file of a histogram. I would like a white
background in the final product but end up producing a gray one, despite
setting what I think are the correct parameters. Suggestions for how to
properly set a white background would be welcome.
Thanks in advance,
Scot
# for non-lattice
> par("bg"="white")
> par("bg")
[1]
2004 Feb 03
2
e2undel for ext3
Is there an ext3 version of this? Something in ext3 makes e2undel unable to
recover unlinked inodes. I just deleted something, umounted the drive to
preserve the state. I used e2undel to look for stuff to recover and it found
0 deleted files.
I have been using e2undel for quite a while with great success and I know hwo
to use it, but it seems to not be able to recover stuff on ext3. Is there
2016 Feb 22
2
Garbled screen after RAM Scrub on boot
Yes I usually work headless, but I have been setting it up from new, so need to see what is going on.
Regards
Francis
From: "Scot P. Floess" <sfloess at nc.rr.com>
To: "Francis Greaves" <francis at choughs.net>
Cc: "centos-virt" <centos-virt at centos.org>
Sent: Monday, 22 February, 2016 17:02:12
Subject: Re: [CentOS-virt] Garbled screen
2008 Feb 01
2
the "union" of several data frame rows
Hi,
I have a question about how to obtain the union of several data frame
rows. I'm trying to create a common key for several tests composed of
different items. Here is a small scale version of the problem. These
are keys for 4 different tests, not all mutually exclusive:
id q1 q2 q3 q4 q5 q6
1 A C
2 B D
3 A D B
4 C D B D
I would like
2007 Jul 05
5
FLAC: getting compression level using metaflac
Why isn't the compression level added in a metadata block by the flac
encoder itself (just like the encoder version)? In this way all programs
that read the file can see what compression level was used.
thx
2007/7/4, Scot Thompson <scot.thompson@cox.net>:
>
> This has been asked many times. The answer is no. I suggest saving the
> compression level into a tag for future
2016 Sep 23
0
Undocumented 'use.names' argument to c()
In Splus c() and unlist() called the same C code, but with a different
'sys_index' code (the last argument to .Internal) and c() did not consider
an argument named 'use.names' special.
> c
function(..., recursive = F)
.Internal(c(..., recursive = recursive), "S_unlist", TRUE, 1)
> unlist
function(data, recursive = T, use.names = T)
.Internal(unlist(data, recursive
2016 Feb 27
5
Re: installing xen on c7
On Sat, 27 Feb 2016 13:20, Scot P. Floess wrote:
>
> Hit the send key before actually typing anything :(
>
> Was going to say - ah OK didn't understand your original question. I'm not
> entirely sure - I just followed directions :) However, you ask a reasonable
> question.
>
> On Sat, 27 Feb 2016, Karanbir Singh wrote:
>
>> On 27/02/16 01:41, Scot P.
2003 Apr 20
2
Rgui crashes after setting par(ask=TRUE) and using lattice (PR#2801)
Full_Name: Scot McNary
Version: 1.7
OS: Windows 98se
Submission from: (NULL) (134.192.131.246)
Hi,
Rgui causes a page fault when asking for lattice graphics after setting
par(ask=TRUE). This doesn't happen in 1.6.2, but does in 1.7.0.
library(lattice)
par(ask=TRUE)
example(dotplot)
Windows "Details" about crash:
RGUI caused an invalid page fault in
module R.DLL at
2016 Feb 27
4
installing xen on c7
On 27/02/16 01:41, Scot P. Floess wrote:
>
> From George's original email, I had to:
>
> * Install centos-release-xen from centos-extras
>
> Then a yum update followed by a yum install xen.
>
> That worked for me...
>
i had to do something similar, but my question is - one cant run xen
without the kernel, so why not have the xen package require the xen
kernel
2016 Sep 23
0
Undocumented 'use.names' argument to c()
I'd expect that a lot of the performance overhead could be eliminated
by simply improving the underlying code. IMHO, we should ignore it in
deciding the API that we want here.
On Fri, Sep 23, 2016 at 10:54 AM, Henrik Bengtsson
<henrik.bengtsson at gmail.com> wrote:
> I'd vote for it to stay. It could of course suprise someone who'd
> expect c(list(a=1), b=2, use.names =
2005 Aug 25
1
question about custom contrasts in ANOVA
Hi,
I have a problem in which I have test score data on students from a number
of schools. In each school I have a measure of whether or not they
received special programming. I am interested in the interaction between
school and attendance to the programming, but in a very select set of
comparisons. I'd like to cast the test as one in which students in each
school who attend are
2015 Sep 09
2
Xen 4.4.3 packages available in virt6-xen-44-testing
On Tue, Sep 8, 2015 at 6:48 PM, Scot P. Floess <sfloess at nc.rr.com> wrote:
> George,
>
> Just an FYI - I tried to run the rpm command and none of the repos showed up
> enabled by default.
Yes, that's because the CBS is is not meant to be for production use,
but only for building and testing. This is for two reasons:
1. The CBS itself is not mirrored, nor provisioned for
2005 Feb 15
1
Is real-time encoding possible with ARM7 @ 66mHz?
Hi,
I have the encoder running on an ARM7 at 66mHz and it takes about
2-times real-time to encode a monophonic pcm file. Both quality and
complexity are set to 3.
I am using the ADS 1.2 tool-chain which seems to optimize C pretty well.
I cannot use the inline ARM assy code because the operations used are
only available for the V5 and up core.
I would be grateful for any thoughts or
2008 Dec 23
1
device error without a check sum error ?
I have a system running in a VM with a root pool. The root pool
occasionally shows a fairly stern warning. This warning comes with no check
sum errors.
bash-3.00# zpool status -vx
pool: rpool
state: ONLINE
status: One or more devices has experienced an error resulting in data
corruption. Applications may be affected.
action: Restore the file in question if possible. Otherwise restore
2015 Feb 05
4
[PATCH] load_linux: correct a type
Correct base's type to match its initialization from prot_mode_base and
passage to syslinux_memmap_find(). Tested with extlinux.
Signed-off-by: Scot Doyle <lkml14 at scotdoyle.com>
---
com32/lib/syslinux/load_linux.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/com32/lib/syslinux/load_linux.c b/com32/lib/syslinux/load_linux.c
index 06ae2a9..ac73729 100644
---
2010 Mar 17
2
Silly question about KVM
I was wondering, if I do not have hardware that natively supports full
virtualization...and I choose to use KVM, will my VMs be running in some
form of chip emulation (and therefore terribly slow). To date, I've been
using Xen and am very comfortable with it. I have some fears that later
whenever Xen is dropped - I'll have to consider KVM.
Also, will Xen be carried forward should