Displaying 20 results from an estimated 8000 matches similar to: "format.factor (PR#11512)"
2008 Apr 27
2
R_DEFAULT_DEVICE (PR#11294)
Setting enviroment variable R_DEFAULT_DEVICE causes an error.
The patch below fixes this.
I guess the same goes for R_INTERACTIVE_DEVICE.
--- R-2.7.0/src/library/grDevices/R/zzz.R 2008-04-27 13:49:11.000000000 +0200
+++ R-2.7.0/src/library/grDevices/R/zzz.R.new 2008-04-27 13:59:37.000000000 +0200
@@ -22,7 +22,7 @@
extras <- if(.Platform$OS.type == "windows")
2009 Oct 01
2
(no subject)
Hi,
Does anyone know where the following package is available:
Holleczek B, Gondos A, Brenner H.
PeriodR - an R package to calculate long term survival estimates using period analysis.
Methods of Information in Medicine 2009; 48: 123-128.
Thanks
Jens Oehlschl?gel
--
GRATIS f?r alle GMX-Mitglieder: Die maxdome Movie-FLAT!
2009 Sep 26
1
questions on csv reading
Hi,
Is there any official way to determine the colClasses of a data.frame?
Why has POSIXct such a strange class structure?
Why is colClasses "ordered" not allowed (and doesn't work)?
Background
==========
I am writing a chunked csv reader that provides the functionality of read.table for large files (in the next version of package ff). In chunked reading, one wants to learn the
2008 Aug 26
3
savePlot() does not save plot with format set
R-help,
Whenever I try to save a plot with "savePlot"
the file is not stored in my hard disk with the selected
format. Several formats are set and none of them
works. I just get the file name with missing extension
and it can't be open with programs like Paint and Microsoft Photo
Editor
Th only one able to open it is "Windows Picture and Fax Viewer"
plot(rnorm(10))
2009 Dec 28
2
seq.int broken (seq as well) (PR#14169)
Full_Name: Jens Oehlschl?gel
Version: 2.10.1
OS: Windows XP
Submission from: (NULL) (156.109.18.2)
# fine as expected from help page:
# "from+by, ..., up to the sequence value less than or equal to to"
# thus 1+10=11 is not in
> seq.int(1L, 10L, by=10L)
[1] 1
# of course 1+1e7 should also not be in
# but is: wrong
> seq.int(1L, 1e7L, by=1e7L)
[1] 1e+00 1e+07
# since we use
2008 Jul 29
1
[LLVMdev] Vector types as function arguments and interfacing with C
On Jul 29, 2008, at 12:41 PM, Duncan Sands wrote:
> Hi,
>
>> I want to be able to write a function like this
>>
>> define <2 x double> @add(<2 x double> %a, <2 x double> %b) nounwind {
>> %c = add <2 x double> %a, %b
>> ret <2 x double> %c
>> }
>>
>> and then call it from C code. What is the appropriate
2002 Aug 08
1
analysis of function dependencies / namespacing
I am going to document a 10.000 lines of R code project.
Before reinventing the wheel, has anyone written a function that analyzes
dependencies between R functions?
I am thinking of output like
caller1 calee1
caller1 calee2
caller1 :
caller2 calee7
:
and I would like to restrict caller and callee to certain positions in the
search path.
My guess is, that a quick and dirty solution is
2002 Aug 08
1
analysis of function dependencies / namespacing
I am going to document a 10.000 lines of R code project.
Before reinventing the wheel, has anyone written a function that analyzes
dependencies between R functions?
I am thinking of output like
caller1 calee1
caller1 calee2
caller1 :
caller2 calee7
:
and I would like to restrict caller and callee to certain positions in the
search path.
My guess is, that a quick and dirty solution is
2002 May 28
1
Intended change from version$os=='Win32' to 'mingw32' ?
Is it intended that version$os no longer is 'Win32' for the Windows-Compile?
What is the approbriate way to check for Windows?
Best
Jens Oehlschl?gel
In 1.4.1 we had
> version
_
platform i386-pc-mingw32
arch x86
os Win32
system x86, Win32
status
major 1
minor 4.1
year
2010 Jan 25
1
ff package: ff objects don't reload completely on NFS drives from a different machine
Try to close the file on the first nfs client before reopening it on the second nfs client. NFS has something called "close-to-open cache consistency".
This means that two clients which have the same nfs file open, cannot rely on seeing the updates from the respective other client. If one clients closes, and the other client opens thereafter, it should see the changes. If you want
2008 Jul 29
0
[LLVMdev] Vector types as function arguments and interfacing with C
Hi,
> I want to be able to write a function like this
>
> define <2 x double> @add(<2 x double> %a, <2 x double> %b) nounwind {
> %c = add <2 x double> %a, %b
> ret <2 x double> %c
> }
>
> and then call it from C code. What is the appropriate translation of
> the <2 x double> vector type into C? I've tried packed structs
2008 Jul 29
2
[LLVMdev] Vector types as function arguments and interfacing with C
Hi,
I want to be able to write a function like this
define <2 x double> @add(<2 x double> %a, <2 x double> %b) nounwind {
%c = add <2 x double> %a, %b
ret <2 x double> %c
}
and then call it from C code. What is the appropriate translation of
the <2 x double> vector type into C? I've tried packed structs and
"typedef double vec_double
2002 Jun 12
1
identical calls are not equal !?
Can please someone familiar with the R internals enlighten me on the
following strange observation:
# this is IDENTICAL as expected
identical(substitute(substitute()), substitute(substitute()))
# but NOT EQUAL !????
substitute(substitute()) == substitute(substitute())
# I originally found it on
t2 <- function(e){
substitute(e)
}
t2(substitute(x==y, list(y=y)))[1]
# I would expect all
2002 May 17
1
What is the most efficient way to assign to PARTS of objects in other frames/environments?
Can please someone familiar with the R internals explain on the following:
PR#1434 from r-bugs clarifies that
assign("a[1]", x, SomeOtherFrame)
or
assign("a$a", x, SomeOtherFrame)
will NOT assign to an object 'a' in the other frame BUT create a new object
called 'a[1]' resp. 'a$a'.
This leads to the following question: what is the most
2003 Aug 13
6
placing labels in polygon center ?
Dear all,
is there any function to calculate the center of a polygon mass in R?
Actually I need to find the best location within polygons to place labels.
Thanks for any hint
Jens Oehlschl?gel
--
COMPUTERBILD 15/03: Premium-e-mail-Dienste im Test\ --------...{{dropped}}
2007 Jul 13
2
nearest correlation to polychoric
Dear all,
Has someone implemented in R (or any other language)
Knol DL, ten Berge JMF. Least-squares approximation of an improper correlation matrix by a proper one. Psychometrika, 1989, 54, 53-61.
or any other similar algorithm?
Best regards
Jens Oehlschl?gel
Background:
I want to factanal() matrices of polychoric correlations which have negative eigenvalue. I coded
Highham 2002
2008 May 09
1
comparison (PR#11421)
In R-2.7.0 release as well as patched (from yesterday) under Windows XP,
R crashes when typing, e.g.:
repeat{
rep(1, 10000) == "?"
}
Note that I cannot reproduce the error in R-2.6.2 nor R-devel.
Uwe Ligges
--please do not edit the information below--
Version:
platform = i386-pc-mingw32
arch = i386
os = mingw32
system = i386, mingw32
status =
major = 2
minor =
2008 May 16
1
Sweave.sty problems under WinXP (English locale) with default settings
Hi R-devels,
I encounter the following problem when I want to build a vignette
in the package building process under Windows
platform i386-pc-mingw32
arch i386
os mingw32
system i386, mingw32
status
major 2
minor
2008 May 22
3
feature request for M$-Windows install (PR#11499)
# R for Windows will not send your bug report automatically.
# Please copy the bug report (after finishing it) to
# your favorite email program and send it to
#
# r-bugs at r-project.org
#
######################################################
R versions R-2.6.2 and R-2.7.0 for M$-Windows no longer allow me to
install as administrator (on my account) so the users can run R on their
own
2001 Feb 02
1
Font problems (wrong font is used) (sorry for the delay Gerard!!)
nomailthankyoug.patel@wanadoo.fr (gerard patel) writes:
> The font mapper is something really weird under Wine; most of
> its weirdness comes from that it's emulating Windows behaviour.
How reassuring :)
> I use stars to test Wine, and definitely the app does not
> use this strange font on my system
> It only displays 'the production queue on Backwele is empty' and