Displaying 20 results from an estimated 26 matches for "mersmann".
Did you mean:
bergmann
2005 Jul 08
3
pairs() uses col argument for axes coloring
...l is part of the ... argument list which is passed on to
localAxis (and from there to axis). Wouldn't it be more approptiate to
use the same color box() uses to draw the border around each
scatterplot? If yes, should I open a bug for this or how would such a
feature request be handled?
-- Olaf Mersmann
2005 Jul 08
3
pairs() uses col argument for axes coloring
...l is part of the ... argument list which is passed on to
localAxis (and from there to axis). Wouldn't it be more approptiate to
use the same color box() uses to draw the border around each
scatterplot? If yes, should I open a bug for this or how would such a
feature request be handled?
-- Olaf Mersmann
2004 Aug 19
2
How to randomize a set of integers in R
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
Received-SPF: none (hypatia: domain of sokamp 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 2.63 (2004-01-11) on hypatia.math.ethz.ch
X-Spam-Level: ***
X-Spam-Status: No, hits=3.2 required=5.0
2011 Jan 24
1
Possible bug in R parser
...to accept
> 20x2
[1] 20
as input. This appears to be related to the parsing of hexadecimal
constants, since there must be a zero before the 'x' (i.e. 2x2 or
02x02 gives the expected error). All this is under R 2.12.1 on both OS
X and Linux. Is this expected behavior?
Cheers,
Olaf Mersmann
2010 Feb 19
1
Fix for incorrect use of restrict in xz third party code
...system wide
one, so it might not be worth the trouble of patching the sources
instead of waiting for a new release. If anyone wants to apply a fix,
I have prepared a patch with all the changes which can be found here
http://www.statistik.tu-dortmund.de/~olafm/temp/xz_restrict.patch
Cheers,
Olaf Mersmann
2004 Jan 06
1
Grouping data.frames
...but I've been unable to come up with a solution that works with two or more columns.
In SQL a query to achieve this would look something like this:
SELECT f1, f2, sum(c1), sum(2) FROM df GROUP BY f1, f2
An hints on how this is done efficiently in R would be greatly appreciated.
Thanks,
Olaf Mersmann
2010 Aug 30
1
Surprising behavior of Negate()
...t;- function(f) {
f <- match.fun(f)
function(...) !f(...)
}
This matches 'f' when Negate() is called and not the first time the return
value is used. If the current behavior is desired, maybe a note in the
documentation could be added to clarify this peculiarity.
Cheers,
Olaf Mersmann
2010 May 31
1
R 2.11.1 is released
...().
o cut(d, breaks = <n>) now also works for "Date" or "POSIXt"
argument d. (PR#14288)
o memDecompress() could decompress incompletely rare xz-compressed
input due to incorrect documentation of xz utils. (Report
and patch from Olaf Mersmann.)
o The S4 initialize() methods for "matrix", "array", and "ts" have
been fixed to call validObject(). (PR#14284)
o R CMD INSTALL now behaves the same way with or without
--no-multiarch on platforms with only one installed
architec...
2010 May 31
1
R 2.11.1 is released
...().
o cut(d, breaks = <n>) now also works for "Date" or "POSIXt"
argument d. (PR#14288)
o memDecompress() could decompress incompletely rare xz-compressed
input due to incorrect documentation of xz utils. (Report
and patch from Olaf Mersmann.)
o The S4 initialize() methods for "matrix", "array", and "ts" have
been fixed to call validObject(). (PR#14284)
o R CMD INSTALL now behaves the same way with or without
--no-multiarch on platforms with only one installed
architec...
2008 Dec 18
0
DTrace probes for R
...fuction entry and return and one which fires before / after a
garbage collection.
Is there any interest in merging something like this into R-devel? If
yes, I'd like to discuss which probes and what data would be useful /
interesting from a developers standpoint.
Greetings from Dortmund,
Olaf Mersmann
[1] http://www.sun.com/bigadmin/content/dtrace/
2009 Feb 10
2
Logical Error? (PR#13516)
Full_Name: Suzi Alves Camey
Version: 2.7.2
OS:
Submission from: (NULL) (143.54.37.254)
Using the commands bellow I expected that the answer is TRUE, but it is FALSE!
P_exposicao=.9
(1-P_exposicao)==.1
2009 Jul 16
1
model.matrix memory problem (PR#13838)
Hi,
`model.matrix' might kill R with a segfault (on a illposed problem, but anyway):
mydf <- as.data.frame(sapply(1:40, function(i) gl(2, 100)))
f <- as.formula(paste("~ - 1 + ", paste(names(mydf), collapse = ":"), sep = ""))
X <- model.matrix(f, data = mydf)
*** caught segfault ***
address 0x18, cause 'memory not mapped'
Segmentation fault
2008 Dec 27
1
Patch to fix small bug in do_External and do_dotcall
I've stumbled upon a small bug/inconsitency in do_External and do_dotcall:
Here's an example:
% LC_ALL=C R --vanilla < symname-bug.R
R version 2.8.0 (2008-10-20)
*snip*
> options(error=expression(0))
> ## Call 'R_GD_nullDevice' with incorrect parameter count:
> .Call("R_GD_nullDevice", 1)
Error in .Call("R_GD_nullDevice", 1) :
2009 Jul 09
2
Improvement of [dpq]wilcox functions
Hi,
I believe I have significantly improved [dpq]wilcox
functions by implementing Harding's algorithm:
Harding, E.F. (1984): An Efficient, Minimal-storage Procedure
for Calculating the Mann-Whitney U, Generalized U and Similar
Distributions, App. Statist., 33, 1-6
Results on my computer show (against R-2.9.1):
> system.time( dwilcox( 800, 800, 80) )
user system elapsed
0.240
2009 Aug 24
0
R 2.9.2 is released
...o instances of anything
drawn with the symbol font face. (Report from Baptiste Auguie.)
o length(x) <- newval and grep() could cause memory corruption.
(PR#13837)
o If model.matrix() was given too large a model, it could crash
R. (PR#13838, fix found by Olaf Mersmann.)
o gzcon() (used by load()) would re-open an open connection,
leaking a file descriptor each time. (PR#13841)
o The checks for inconsistent inheritance reported by setClass()
now detect inconsistent superclasses and give better warning
messages.
o print...
2009 Aug 24
0
R 2.9.2 is released
...o instances of anything
drawn with the symbol font face. (Report from Baptiste Auguie.)
o length(x) <- newval and grep() could cause memory corruption.
(PR#13837)
o If model.matrix() was given too large a model, it could crash
R. (PR#13838, fix found by Olaf Mersmann.)
o gzcon() (used by load()) would re-open an open connection,
leaking a file descriptor each time. (PR#13841)
o The checks for inconsistent inheritance reported by setClass()
now detect inconsistent superclasses and give better warning
messages.
o print...
2012 May 20
1
CRAN (and crantastic) updates this week
CRAN (and crantastic) updates this week
New packages
------------
* bisectr (0.0.2)
Maintainer: Winston Chang
Author(s): Winston Chang <winston at stdout.org>
License: GPL-2
http://crantastic.org/packages/bisectr
Tools to find bad commits with git bisect
* CUMP (1.0)
Maintainer: Xuan Liu
Author(s): Xuan Liu <liuxuan at bu.edu> and Qiong Yang <qyang at bu.edu>
2011 Feb 25
0
R 2.12.2 is released
...ndex files <pkg>/html/00Index.html were generated
with a stylesheet reference that was not correct for static
browsing in libraries.
? ccf(na.action = na.pass) was not implemented.
? The parser accepted some incorrect numeric constants, e.g. 20x2.
(Reported by Olaf Mersmann.)
? format(*, zero.print) did not always replace the full zero parts.
? Fixes for subsetting or subassignment of "raster" objects when
not both i and j are specified.
? R CMD INSTALL was not always respecting the ZipData: yes field of
a DESCRIPTION file (althoug...
2011 Feb 25
0
R 2.12.2 is released
...ndex files <pkg>/html/00Index.html were generated
with a stylesheet reference that was not correct for static
browsing in libraries.
? ccf(na.action = na.pass) was not implemented.
? The parser accepted some incorrect numeric constants, e.g. 20x2.
(Reported by Olaf Mersmann.)
? format(*, zero.print) did not always replace the full zero parts.
? Fixes for subsetting or subassignment of "raster" objects when
not both i and j are specified.
? R CMD INSTALL was not always respecting the ZipData: yes field of
a DESCRIPTION file (althoug...
2004 Dec 12
12
switching to Linux, suggestions?
Dear List,
I have acquired a new desktop and wanted to put a free OS on it. I am trying Fedora Core 1, but not sure what the best Linux OS is for using R 2.0.1?
Thank you in advance for your input,
Tom Volscho
************************************
Thomas W. Volscho
Graduate Student
Dept. of Sociology U-2068
University of Connecticut
Storrs, CT 06269
Phone: (860) 486-3882