Displaying 20 results from an estimated 20000 matches similar to: "modification of BATCH"
2004 Jun 25
3
alternate rank method
Hi,
I'm wondering if anyone can point me to a function that will
allow me to do a ranking that treats ties differently than
rank() provides for?
I'd like a method that will assign to the elements of each
tie group the largest rank.
An example:
For the vector 'v', I'd like the method to return 'rv'
v: 1 2 3 3 3 4 5 5 6 7
rv: 1 2 5 5 5 6 8 8 9 10
Thanks,
2005 Oct 20
3
numerical issues in chisq.test(simulate=TRUE) (PR#8224)
Hi,
This report deals with p-values coming from chisq.test using
the simulate.p=TRUE option. The issue is numerical accuracy
and was brought up in previous bug reports 3486 and 3896.
The bug was considered fixed but apparently was only mostly
fixed. Just the typical problem of two values that are
mathematically equal not ending up numerically equivalent.
Consider this series of three 2x2
2005 Jul 29
2
R_BATCHSAVE setting in config.site
Hi,
I just downloaded and installed last nights version of R-patched
and decided that I'd set R_BATCHSAVE=--no-save in config.site,
which I haven't done before.
Since the comment above R_BATCHSAVE in config.site says:
## The default behavior of R if it encounters EOF in batch mode.
## Set this to one of '--save' or '--no-save' depending whether you
## want automatic
2001 Jun 10
1
documentation and \sloppy (PR#976)
Hi
When preparing documentation using Rd2dvi sometimes we get "overflow" on
some lines. The consequence is that in the documentation there are some
lines where words are not hyphenated or moved. The final document has some
lines with more columns than the rest of the text.
This happens when we use \code{} (which probably calls the \tt in latex).
I've been checking the documentation
2004 Jun 03
3
Sloppy argument checking for named arguments
Christian --
This is not a bug, but a feature, and the dot is not the issue here. R uses
partial argument matching on function arguments.
So:
> f <- function(foobar = 0){print(foobar)}
> f
function(foobar = 0){print(foobar)}
>
> f(fo=1)
[1] 1
> f(foo=1)
[1] 1
> f(foob=1)
[1] 1
> f(fooba=1)
[1] 1
> f(foon=1)
Error in f(foon = 1) : unused argument(s) (foon ...)
2007 May 15
1
zisofs-tools sloppy option does not work
This isn't a syslinux issue, but I don't see a mailing list setup for
the zisofs tools. Forgive me if this is sent to the wrong place.
The sloppy option does not work as documented in the mkzftree man page.
Here is the patch I used to enable it.
--- zisofs-tools-1.0.7/mkzftree.c.sloppy 2007-05-15
08:42:20.000000000 -0400
+++ zisofs-tools-1.0.7/mkzftree.c 2007-05-15
2004 Nov 23
1
Batch
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
Received-SPF: none (hypatia: domain of claudiapaladini at web.de does not designate permitted sender hosts)
X-Virus-Scanned: by amavisd-new at stat.math.ethz.ch
X-Spam-Checker-Version: SpamAssassin 3.0.1 (2004-10-22) on hypatia.math.ethz.ch
X-Spam-Level:
X-Spam-Status: No, score=0.0 required=5.0
2003 Sep 14
1
Documentation of colSums et. al (PR#4154)
Full_Name: Doug Grove
Version: 1.7.0
OS: Linux
Submission from: (NULL) (209.31.211.56)
Hi,
Minor mistake in the documentation on the colSums page.
In the ARGUMENTS section it states for 'dims' that:
For `col*', the sum or mean is over dimensions
`dims+1, ...'; for `row*' it is over dimensions `1:dims'.
These two are reversed.
Thanks,
Doug Grove
2009 Jun 29
2
[LLVMdev] [cfe-dev] Patch for llvm::DepthFirstIterator.h and llvm::PostOrderIterator.h
Hi,
I've done all the minor changes you recommended and have attached a new
patch including both files again (even if po_iterator didn't change).
However:
Dan Gohman schrieb:
> The plural of "child" is "children"; please rename this function
> accordingly.
Is "childs" just sloppy, is it american english or is it just a
misconception of foreigners
2004 Oct 21
3
documentation for rank() (PR#7298)
Full_Name: Doug Grove
Version: R.1.9.1
OS: Linux
Submission from: (NULL) (140.107.156.61)
I just found that rank() has a 'decreasing' argument that is not documented in
its
help page. I checked my version of 2.0.0 (original release hence unpatched)
and
it is not documented there. For curiousity I also went back to version 1.8.1
and
checked the function (not the documentation)and at
2005 May 21
2
print format for difftime
Has anyone written a function that will print a difftime in the form:
hh:mm:ss
or
yy-mm-dd hh:mm:ss
depending on the actual size.
(sloppy notation for months/minutes, but surely you get the point).
Bendix
----------------------
Bendix Carstensen
Senior Statistician
Steno Diabetes Center
Niels Steensens Vej 2
DK-2820 Gentofte
Denmark
tel: +45 44 43 87 38
mob: +45 30 75 87 38
fax: +45 44 43 07
2003 Dec 06
7
Windows Memory Issues
Hi all,
I am currently building an application based on R 1.7.1 (+ compiled
C/C++ code + MySql + VB). I am building this application to work on 2
different platforms (Windows XP Professional (500mb memory) and Windows
NT 4.0 with service pack 6 (1gb memory)). This is a very memory
intensive application performing sophisticated operations on "large"
matrices (typically 5000x1500
2005 Sep 08
1
Wishlist: write.delim()
Hi,
It would be great if someone would add write.delim() as an
adjunct to write.table(), just as with write.csv().
I store a lot of data in tab-delimited files and can read
it in easily with: read.delim("text.txt", as.is=TRUE)
and would love to be able to write it out as easily when
I create these files.
The obvious setting needed for write.delim() is sep = "\t",
but in
2006 Jul 18
1
documentation for argument to screen (PR#9085)
Full_Name: Doug Grove
Version: 2.3.1 patched (2006-07-03 r38485)
OS: Windows
Submission from: (NULL) (24.19.37.159)
A msg. to R-help prompted me to read the help page for split.screen/screen,
etc.
I understand what the function is for, but could not find information that
described how the argument 'n' in screen/erase.screen/close.screen is mapped to
the regions on the device. All we
2009 Dec 04
1
error in help.search (PR#14113)
Full_Name: Doug Grove
Version: 2.10.0 10-26-2009
OS: x86_64-unknown-linux-gnu
Submission from: (NULL) (140.107.164.65)
Hi,
Looks like the revisions to help.search didn't get completely finished.
When the user specifies the argument 'package' the code doesn't define the
variable 'paths' prior to trying to use it, which obviously produces an error.
The code dies when
2016 Jul 04
2
Status of stack walking in LLVM on Win64?
Thanks all - looks like RuntimeDyldCOFFX86_64 is indeed the missing link.
I'm temporarily using my own code to relocate the pdata section during
linking (for unrelated reasons) but I'll definitely explore the dynamic
loader in more detail. I'd much prefer to use well-tested code over my
sloppy 20 minute hack job :-)
-------------- next part --------------
An HTML attachment was
2010 Jan 14
5
Better way than an ifelse statement?
Hello All,
I am trying to create a column of weights based off of factor levels
from another column. I am using the weights to calculate L scores.
Here is an example where the first column are scores, the second is my
"factor" and the third I want to be a column of weights. I can do
what I want with an ifelse statement (see below), but I am wondering
if anyone knows of a cleaner way
2011 Dec 01
2
Summarizing elements of a list
Hi everyone,
I looked around the list for a while but couldn't find a solution to my
problem. I am storing some results to a simulation in a list and for each
element i have two separate vectors(is that what they are called, correct my
vocab if necessary). See below
Version1_<-list()
for(i in 1:5){
Version1_[[i]]<-list(First=rnorm(1),Second=rnorm(1))
}
What I want is to put all
2007 Jun 17
1
Where did sloppy focus go?``
Hi
Just wondering where the 'sloppy focus' key in scale. It seems to have
been removed
-SmSpillaz
2003 Jan 22
1
dataframe subsetting behaviour
Hi,
I'm trying to understand a behaviour that I have encountered
and can't fathom.
Here's some code I will use to illustrate the behaviour:
# start with some data frame "a" having some named columns
a <- data.frame(a=rep(1,3),c=rep(2,3),d=rep(3,3),e=rep(4,3))
# create a subset of the original data frame, but include a
# name "b" that is not present in my