Displaying 20 results from an estimated 1000 matches similar to: "(PR#1556)"
2002 May 15
0
lib.fixup, .GlobalEnv, and R1.5.0 (PR#1556)
Full_Name: Mark Bravington
Version: 1.5.0
OS: Windows 2000
Submission from: (NULL) (140.79.2.3)
In R1.3.1, I used the following code inside a function to set a "path" attribute
to .GlobalEnv:
env_ pos.to.env( 1)
attr( env, 'path')_ .Path # .Path is a named char vector of length 1
.Internal( lib.fixup( env, .GlobalEnv)) # adds the attribute
And this works fine. But in
2002 Jan 12
1
R-1.4.0 delay()
R-1.4.0 seems to have changed the way delay() works, or perhaps it is
the way library() works that nullifies the advantages of using delay()
in a package.
It seems that the process of loading a package evaluates each object
provided by that package, and so in particular, the delay()ed object is
evaluated and brought into memory.
For example generating a test example, where test/R/functions.s is:
2002 May 15
0
(PR#1558) language: bug or feature: vector-subscript of
On Wed, 15 May 2002 mark.bravington@csiro.au wrote:
> Full_Name: Mark Bravington
> Version: R1.3.1 & R1.5.0
> OS: Windows 2000
> Submission from: (NULL) (140.79.2.3)
>
>
> R doesn't like the use of subscripts with length > 1, to get into recursive
> lists:
>
> > listio_ list( a=list( b=9, c='hello'), d=1:5)
> > listio[[ c( 1, 2)]]
>
2002 May 15
0
language: bug or feature: vector-subscript of list (PR#1558)
Full_Name: Mark Bravington
Version: R1.3.1 & R1.5.0
OS: Windows 2000
Submission from: (NULL) (140.79.2.3)
R doesn't like the use of subscripts with length > 1, to get into recursive
lists:
> listio_ list( a=list( b=9, c='hello'), d=1:5)
> listio[[ c( 1, 2)]]
Error: attempt to select more than one element
>
S is more relaxed:
test> listio_ list( a=list( b=9,
2002 Nov 18
2
library() help for Windows
Dear R users,
I have just upgraded R v1.5.0 to v1.6.1 for Windows but have trouble loading my library of R only functions (no C calls). After examining the "library" script this difference was found:
(v1.5.0)
which.lib.loc <- dirname(pkgpath)
descfile <- system.file("DESCRIPTION", package = package,
lib.loc = which.lib.loc)
if
2004 Jul 22
2
Files and classes in a package?
While installing my small package, I met a tricky problem.
For clarity, let me explain it with the following simplified example.
In ~/pkg/R/aclass.R,
setClass("aclass", contains="bclass", representation(i="numeric"))
In ~/pkg/R/bclass.R,
setClass("bclass", representation(j="numeric"))
After building a "pkg" package, the file
2002 Nov 20
2
restart
Dear group
I use "restart" in part of my code, in a way that's not easily changed to
"try". As I convert code from R1.5.0 to R1.6.1, I'm getting ugly messages;
the help system says to contact r-devel, so here I am. This one's a bit
complicated-- sorry!
The context is inside a debugger (I have an R and S debugger that offers
stand-alone code windows, line numbered
2002 May 10
1
updata.packages()
Something strange is happening with update.packages on my machine (Win2000,
R-1.5.0 installed from binaries). Some of the packages (see below) keep
getting updated every time. When I issue update.packages() I get this
every time for the last few days (I think since I installed 1.5 and the
packages but I am not sure). This happens with CRAN shown below and also
with CRAN set to
2006 Jul 13
1
writeForeignSAS and potential extensions
Dear R-devel,
I've made some potential extensions to writeForeignSAS
in 'foreign' that I wanted to pass along if anyone is
interested. I've attached the diff -u output against
the version found in foreign_0.8-15 and an .R file
with my changes. (In this .R file, the function is named
writeForeignSAS7 to simplify testing/comparisons.)
I've tried to alter the current
2002 May 21
0
Build
Dear helpers!
I tried to build a package I have written, and which I have built up to now
under R v .1.2.1, Windows 98 and Cygwin.
The plan is to migrate to R v 1.5.0, Windows 2000 and Rtools.
The package fits the decription of Simple Ports in readme.packages.
The command
C:\R\rw1050\src\gnuwin32>make pkg-sag
gave the output
make DLLNM= \
-C C:/R/rw1050/src/library/sag PKG=sag
2013 Mar 19
1
source, sys.source and error line numbers
Hi,
is there a way to retrieve the line number of where en error occurred when
sourcing a file in a tryCatch statement? Is it stored somewhere accessible?
It is not found in the error object.
Consider the following code/output and note the difference in the traceback
between source (has line number) and sys.source (has no line number).
Thank you,
Renaud
########
# code
########
codefile <-
2010 Jul 31
3
a problem
dear:
when I read a Excel file(exp-11),The R project give me a error ,Just like this:
??'datafile'
> write.foreign("exp-11.xls")
???list(df = df, datafile = datafile, codefile = codefile) :
??'datafile'
> write.foreign("exp-11.xls")
???list(df = df, datafile = datafile, codefile = codefile) :
??'datafile'
>
2002 Jun 17
2
Rgui crashes
My Rgui crashes quite a lot when entering certain characters. I put a
freshly extracted msvcrt.dll into the rw1050\bin directory, but this did not
fix the problem. Perhaps, as stated in the FAQ section, I need also "put the
rw1050\bin directory early in your path" but I do not know how to do it in
Windows Me. Please could you give me some help?
E. Barahona
2013 May 14
15
[Bug 2103] New: remote command as an option in ssh_config
https://bugzilla.mindrot.org/show_bug.cgi?id=2103
Bug ID: 2103
Summary: remote command as an option in ssh_config
Classification: Unclassified
Product: Portable OpenSSH
Version: 6.2p1
Hardware: Other
OS: Linux
Status: NEW
Severity: enhancement
Priority: P5
Component: ssh
2002 Mar 14
1
Row-binding factor variables looses the ordered attribute.
Hi everyone,
I've just notice a problem with ordered factor variables. It appears
that row-binding two ordered factors together looses the ordered
attribute. The following example happens both in R1.3.1 and R1.4.1 (on
RedHat 7.2):
> y <- ordered(gl(3,6),labels=1:3)
> y
[1] 1 1 1 1 1 1 2 2 2 2 2 2 3 3 3 3 3 3
Levels: 1 < 2 < 3
> data <-
2001 Nov 06
1
R CMD check, undoc and package checking
As cool and wonderful as the package checking tools for R are, I sometimes am
stymied when trying to track down a problem. For example, I occasionally see
error messages when running R CMD check like the following:
[...]
* checking Rd files ... OK
* checking for undocumented objects ... ERROR
* in parse(file, n, text, prompt) : syntax error on line 932
* in undoc(dir =
2002 May 31
1
Library Tcltk
Dears users,
Thanks for your responses concerning my question of yesterday (about stand-alone
package). Il would like to explore two ways:
-- Tcltk extension,
-- Rweb application.
I have installed ActiveTcl (in F:\Tcl), and I have modified the PATH (in the
autoexec.bat file):
set R_LIBS=F:\R\rw1050\library
set PATH=%PATH%;F:\Tcl\bin
set PATH=%PATH%;F:\Tcl\lib
set PATH=%PATH%;F:\R\rw1050\bin
2002 Jan 08
2
installing R-1.3.1 on Solaris 2.6
Hi All,
I am trying to install R1.3.1 on solaris 2.6 using the gcc/g77 compiler.
The configure step succeeded, but make failed. The compiler versions I used
are:
gcc version 2.95.2 19991024 (release)
g77 version 2.95.2 19991024 (release)
CC workshop Compilers 5.0 98/12/15 C++ 5.0
I can't use the c++ compiler(v2.95.2), since it failed the configure step. I
can't use f77 either,
2006 Dec 11
2
FW: R
Hi Ricky / AJ
Progress of sorts. I got passed the last problem by looking at the makefiles
but run in to the next one, see below.
It has created files in /contrib/R-2.4.0. there is an " R " under
/contrib/R-2.4.0/bin/R.
Running it gives :-
/contrib/R-2.4.0/bin/R
R version 2.4.0 (2006-10-03)
Copyright (C) 2006 The R Foundation for Statistical Computing
ISBN 3-900051-07-0
R is
2016 Feb 04
0
[PATCH] aarch64: Use a common table of AAVMF paths.
Previously the code had two places where an identical set of AAVMF
paths were stored. Put this information into one place.
This is just refactoring.
---
src/appliance.c | 26 +++++---------------------
src/guestfs-internal-frontend.h | 1 +
src/utils.c | 12 ++++++++++++
v2v/utils-c.c | 27 +++++++++++++++++++++++++++
v2v/utils.ml