Displaying 20 results from an estimated 200 matches similar to: "makeNamespace and rdyncall"
2011 Jul 25
1
rdyncall 0.7.3
Initial Announcement: Package rdyncall released on CRAN. (Version 0.7.3)
The package was presented at the Use!R 2009 with the title
'An improved Foreign Function Interface for R' and is now available on CRAN
and considered stable for a large range of R platforms.
The package provides a cross-platform framework for dynamic binding of
C libraries using a flexible Foreign Function
2011 Jul 25
1
rdyncall 0.7.3
Initial Announcement: Package rdyncall released on CRAN. (Version 0.7.3)
The package was presented at the Use!R 2009 with the title
'An improved Foreign Function Interface for R' and is now available on CRAN
and considered stable for a large range of R platforms.
The package provides a cross-platform framework for dynamic binding of
C libraries using a flexible Foreign Function
2012 Aug 20
1
rdyncall fears removal from CRAN
Dear R Core and CRAN Team,
I received a warning that the rdyncall package [1] will be archived and removed from the main CRAN distribution at 7th of September
if I can not get rid of .Internal calls.
> From: ripley at stats.ox.ac.uk (Prof Brian Ripley)
> Subject: Use of .Internal in CRAN package rdyncall
> Date: August 14, 2012 11:09:06 AM GMT+02:00
> To: dadler at uni-goettingen.de
2015 Jul 24
0
Rcartogram package - error message
I am trying to install two R packages to produce cartograms like in the work
of Gastner and Newman:
http://www.pnas.org/content/101/20/7499.full.pdf
but I have a problem installing Rcartogram and rdyncall packages.
Both are not available in CRAN and have to be installed from archivea and
produce errors:
> install.packages("C:/Users/Milena/Downloads/*Rcartogram*_0.2-2.tar.gz",
>
2017 Oct 28
0
making-a-lisp implementation of R
Hello,
I was trying to make my R implementation of making-a-lisp
https://github.com/kanaka/mal/tree/master/
And to my surprise I got stuck in the starting blocks. There is already
a mal implementation of R here
https://github.com/kanaka/mal/tree/master/r but it uses rdyncall package
which is not on CRAN anymore and I thought it would be fun to try my
skills here
The following code is
2013 Feb 24
0
New package lazyData submitted to CRAN
I have submitted a tiny new package to CRAN, lazyData. This has a single
function
requireData
which is designed as a drop-in replacement for base::require. In addition
to doing the same job as base::require, it supplies a LazyData facility for
those packages which have data but do not provide LazyData.
The call is the same as for base::require but with an additional
side-effects.
After the
2013 Feb 24
0
New package lazyData submitted to CRAN
I have submitted a tiny new package to CRAN, lazyData. This has a single
function
requireData
which is designed as a drop-in replacement for base::require. In addition
to doing the same job as base::require, it supplies a LazyData facility for
those packages which have data but do not provide LazyData.
The call is the same as for base::require but with an additional
side-effects.
After the
2017 Nov 23
2
Bug in R CMD INSTALL when handling invalid LazyData DESCRIPTION field
Hi, I think I've found a bug in R CMD INSTALL. When it tries to parse a
DESCRIPTION file with an invalid LazyData field, it errors out while
trying to print the correct error message:
> R CMD INSTALL .
* installing to library ?/home/example/R/x86_64-pc-linux-gnu-library/3.4?
* installing *source* package ?samplepackage? ...
** data
Error in errmsg("invalid value of ", field,
2012 Nov 06
1
LazyData: no / yes
Hi the list
I have package foo0 with a big dataset 'myData'.
In DESCRIPTION, if I use 'LazyData: no', then I get:
- when I open a R session : memory used=20 908
- when I attach 'library(foo0)' : memory used=24364
- then I load the set 'data(myData)' : memory used=39 668
If I use LazyData: yes', then I get
- when I open a R session : memory used=20 908
2007 Nov 14
3
When to use LazyLoad, LazyData and ZipData?
Dear developeRs,
I've searched the documentation, FAQ, and mailing lists, but haven't
found the answer(*) to the following:
When should one specify LazyLoad, LazyData, and ZipData?
And what is the default if they are left unspecified?
(*)Except that
1) If the package you are writing uses the methods package, specify
LazyLoad: yes, and
2) The optional ZipData field controls whether the
2017 Nov 24
0
Bug in R CMD INSTALL when handling invalid LazyData DESCRIPTION field
>>>>> Aaron Wells <aaronw at catalyst.net.nz>
>>>>> on Fri, 24 Nov 2017 12:46:48 +1300 writes:
> Hi, I think I've found a bug in R CMD INSTALL. When it tries to parse a
> DESCRIPTION file with an invalid LazyData field, it errors out while
> trying to print the correct error message:
>> R CMD INSTALL .
> *
2013 May 20
1
Objects created by more than one data call?
Hello, All:
If I use LazyData with the Ecdat package on R-Forge, "R CMD
check" reports "no visible binding for global variable
'nonEnglishNames'", where 'nonEnglishNames' is a dataset in Ecdat used
as the default argument for a function. With LazyData, that NOTE
disappears. However, then I get, "Warning: objects 'Hstarts',
2017 Jul 03
1
The ByteCompile & LazyLoading fields
Hi,
In the DESCRIPTION file the ByteCompile and LazyLoading arguments appear to
accept any value.
>From the manual the field should be a "logical field". However, authors
interpret this in a variety of ways:
unique(tools::CRAN_package_db()$ByteCompile)
# [1] NA "TRUE" "yes" "true" "Yes" "no"
#
2012 Jan 18
4
R package dev: how to export constant?
Hi,
i create two constants kilo and milli in [1]. These should be available
after loading
library(sitools)
How should i export them and what have i done wrong?
(Other suggestions for improving the package are welcome too)
The ready to use .tar.gz and the source can be found on github [2,3]
kind regatds,
[1] https://github.com/jonasstein/sitools/blob/master/init.R
[2]
2014 Sep 04
1
R CMD check --as-cran does not show all error messages.
Hello, That is my first post here and I'd like to thanks everybody in
advance.
I am writing a package with some R functions and try to submit it to CRAN.
After build and check the package a number of times, I am struggling with
the fact that the CRAN people responsible for checking packages are
replying me with some mistakes that I just do NOT get when I do the check in
my computer. With the
2013 Mar 29
3
weird error with a lazyload .RData file in a package
I added a new data file, NLSY.RData, to a package that uses LazyData: Yes
It passed R CRAN check and R CMD install worked w/o significant complaints.
* installing to library 'C:/R/R-2.15.2/library'
* installing *source* package 'heplots' ...
** R
** data
** moving datasets to lazyload DB
** demo
** inst
** preparing package for lazy loading
Warning: package 'nnet' was
2006 Feb 04
1
Using the lazy data mechanism
Dear list members,
I'm trying to use the lazy data mechanism with the car package, so far
without success. The data sets are in the source package's data subdirectory
in the form of compressed .rda files, and I added the directive LazyData:
yes to the package's DESCRIPTION file.
I suspect that the problem is that the package has no namespace, but I've
been unable to find a
2006 Sep 20
2
mysterious error on compile R 2.3.1
Getting a very strange error with a new install of R from source on x86;
make[3]: Leaving directory `/tmp/R.INSTALL.r20887/cluster/src'
** R
** data
** moving datasets to lazyload DB
Error in factor(c(1, 2, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1), :
invalid labels; length 2 should be 1 or 1
Execution halted
ERROR: lazydata failed for package 'cluster'
** Removing
2008 Oct 29
2
sessionInfo() error
[Using R 2.7.2 on Windows XP]
After re-building our heplots package, I've begun to get the following
error from sessionInfo(),
even though it passes R CMD check and builds without errors:
> sessionInfo()
Error in x$Priority : $ operator is invalid for atomic vectors
In addition: Warning message:
In FUN(c("MASS", "heplots", "car", "rgl",
2005 Jun 28
2
Error in compiling R
When compiling R on Windows, I am getting the following error. Does
anyone have any suggestions?
---------- Making package datasets ------------
adding build stamp to DESCRIPTION
installing R files
installing data files
preparing package datasets for lazy data loading
Error in load(zfile, envir = envir) : input has been corrupted, with LF
replaced
by CR
Execution halted
make[4]: ***