Displaying 20 results from an estimated 1000 matches similar to: "'CanMakeUseOf' field [was ".. Add 'fields' argument ..]"
2009 Jun 09
0
Dependency between packages for Windows-binaries
Hi,
I have already asked a similar question without response
(https://stat.ethz.ch/pipermail/r-help/2009-June/200300.html) so I am
here reformulating in the hope that someone is able to help. If
something is unclear, please ask.
I am working on the development of two packages, pkg1 and pkg2 (based on
work in two different projects). pkg1 is quite generic, pkg2 tries to
solve a particular
2009 Jun 30
1
Conditional dependency between packages
Hi,
I have already asked a similar question twice without response on the
r-help list https://stat.ethz.ch/pipermail/r-help/2009-June/200300.html
but this list might be more appropriate. If there is a particular reason
for the lacking answers (unclear, missing information, the solution is
obvious to everyone except me, etc), I would like to know. The
description below is generalized, but I
2009 Jun 03
0
Problems with conditional importFrom in NAMESPACE
Hi,
I am currently involved in the development of two R-packages, pkg1 and
pkg2. They should not be dependent on each other, as most users will
only be interested in one of them. Still, I want pkg2 to provide one
extra S3 method for three functions (fun1-3) in pkg1 for objects of a
class defined in pkg2 (class2), for those users who actually have both
packages installed.
I think this
2005 Nov 28
1
import of Namespaces
Dear R devels,
let's say I have three packages "pkg1", "pkg2" and "pkg3" which all
contain new S4 classes and methods. Where "pkg3" depends on "pkg2" and
"pkg2" depends on "pkg1". Moreover, all three packages have namespaces.
1) I use ".onLoad <- function(lib, pkg) require(methods)". Do I also
have to
2018 Aug 20
0
Consider setting RTLD_GLOBAL when loading packages in LinkingTo
Hi everyone,
Some of you probably received the following thread from the Rcpp-devel
mailing list:
http://lists.r-forge.r-project.org/pipermail/rcpp-devel/2018-August/010072.html
Summing up, the issue described is the following: pkg1 provides type1
in pkg1.so building on some headers. pkg2 links to pkg1 (BTW,
LinkingTo is actually misleading, because it doesn't really link to
it), i.e.,
2009 Sep 18
1
Missing link(s) in documentation object
Hi,
I want to cross-reference from the documentation of pkg1 to pkg2, which
is imported in the NAMESPACE of pkg1, and under Depends in DESCRIPTION
of pkg1. According to "Writing R extensions", this can be done by:
\code{\link{foo}}
when foo is an aliased function in the documentation of pkg2. This works
as it should when I install the package, but when I run R CMD check
pgk1, I get
2002 Oct 01
1
R CMD check dependency simplification
I am trying to re-organizing my Makefile for testing my R packages and I
am having trouble finding a structure I like. The problem seems to be
that "R CMD check", which does wonderful things, does not allow
dependency information to flow through very gracefully. That is, since
everything is copied into the pkg.Rcheck directory, it is difficult to
make any changes to source files without
2012 Aug 01
3
How to link two R packages together
Hi,
I have built two R packages. One of them (PKG1) needs to use the functions
of the other package (PKG2).
So I need to link these two packages together, so that the functions of PKG2
can be available to PKG1. And when I load one package using
'library("PKG1")', PKG2 can be loaded at the same.
Any ideas welcome.
--
View this message in context:
2013 Jul 31
1
Depends vs Imports
I am being asked to modernize the Depends line in the DESCRIPTION file
of some packages. Writing R Extensions says:
The general rules are
Packages whose namespace only is needed to load the package using
library(pkgname) must be listed in the ?Imports? field and not in
the ?Depends? field. Packages listed in imports or importFrom
directives in the NAMESPACE file should
2006 Aug 29
1
PATCH: Add fields argument to installed.packages and available.packages
Hi all,
The write_PACKAGES function has a 'fields' argument that allows a user
generating a PACKAGES file to specify additional fields to include.
For symmetry, it would be nice for the available.packages function to
be able to read those extra fields when specified.
Similarly, it would be useful for installed.packages to have a
'fields' argument. This would allow a user to
2005 Jan 04
2
warnings and errors with R CMD INSTALL
Hello,
unfortunately I had to compile latest version of R-2.0.1 by myself. I'd
rather would prefer vendors binaries but since the current version of
Ubuntu defaults to 1.9.x I had to compile R on my own in order to be up
to date!
So far, everything went fine and R runs smoothly. Unfortunately I am not
able to use R CMD INSTALL command to install add-on packages.
I followed RNews 3/3 and
1997 Dec 11
0
R-alpha: "[.ts" warning "Not returning time series.."
On 11-Dec-97 maechler@stat.math.ethz.ch wrote:
>>>>>> "PaulG" == Paul Gilbert <pgilbert@bank-banque-canada.ca> writes:
>
> PaulG> I have a class "tframe" with more specific classes indicating
> PaulG> how time is being represented, such as
>
> >> class(tframe(data))
> PaulG> [1] "ts"
2006 Aug 18
1
Beginner Help with a fatal error in a first Basic Install
dovecot at dovecot.org
Hello,
I have been doing my first BasicInstall of Dovecot, following the
documentation for VirtualUsers, and piecing together suggestions from other
on the list, and out on the web.
In dovecot.conf, I have added,
default_mail_env =
maildir:/var/Dovecot/%d/Accounts/%1u/%u/Maildir:INDEX=/var/Dovecot/indexes/%d/%n
auth default {
mechanisms = plain
user = pgnmail
1999 Apr 27
1
Multivariate ts -- arithmetic bug [ for SOME time-series ] (PR#178)
Paul wrote to R-devel :
PaulG> ts() is giving me problems on Solaris:
PaulG> R : Copyright 1999, The R Development Core Team
PaulG> Version 0.64.0 (April 8, 1999)
PaulG> ...
>> z <- ts(matrix(1:20,10,2), start=c(1969,1), frequency=12)
>> max(abs(z-z))
PaulG> Error: invalid time series parameters specified
>> traceback()
2010 Jun 22
1
Installing packages from folder on the computer
i am able to install zip files of packages from local zip files using the
file.choose() for the package argument in install.packages() function in R
console and also from the Packages menu>install from local zip files. But
if there are many packages to install (say >15 or 20), then i have to factor
in dependencies of 15-20 packages which may be more than 100 or 200 packages
in all to be
2005 Apr 11
0
exists("loadings.default") ...
Paul Gilbert asked me the following, about a topic that was
dealt here (on R-devel) a few weeks ago (~ March 21):
>>>>> "PaulG" == Paul Gilbert <pgilbert@bank-banque-canada.ca>
>>>>> on Mon, 11 Apr 2005 10:35:03 -0400 writes:
PaulG> Martin, a while ago you suggested:
>> For S3, it's a bit uglier, but I think you could still
2019 May 03
0
NT_STATUS_ACCESS_DENIED on a directory I have permission to access
Hai Paul,
Look at this: user=paulg,uid=2381
(from mount -t cifs //xxxx.xxxx.yorku.ca/homes /tmp/1 -o user=paulg,uid=2381,gid=1000,domain=AD.ONE.EXAMPLE.CA)
Now, look at this :
> idmap config * : backend = tdb
> idmap config * : range = 3000-7999
> # - You must set a DOMAIN backend configuration
> # idmap config for the ONEEXAMPLECA domain
> idmap config ONEEXAMPLECA : backend =
2017 Apr 10
3
[PATCH] builder: various improvements to the documentation
- convert the Fedora 20 examples to Fedora 25
- convert the yum examples to dnf
- convert the Debian 7 examples to Debian 8
- mention that --core updates all the installed packages, not "core"
ones
- convert i386 to i686 for the Fedora 32bit examples
- mention that autogenerated root passwords are printed on stdout
- mention --get-kernel is deprecated in favour of virt-get-kernel
-
2015 Feb 09
0
[PATCH 2/5] macosx: Add definition of program_name for gnulib
gnulib's error.c requires program_name to be externally defined
for !_LIBC systems. This defines program_name for Darwin only.
---
configure.ac | 3 +++
src/Makefile.am | 6 ++++++
src/program_name.c | 4 ++++
3 files changed, 13 insertions(+)
create mode 100644 src/program_name.c
diff --git a/configure.ac b/configure.ac
index 37850a3..a2fb99e 100644
--- a/configure.ac
+++
2015 Feb 12
0
Re: [PATCH] macosx: Darwin-specific autoconf macros
On Thursday 12 February 2015 17:49:55 Margaret Lewicka wrote:
> * Replace LD_LIBRARY_PATH with DYLD_LIBRARY_PATH for Darwin
> * Remove the -lcrypt flag for Darwin (unsupported)
> ---
> configure.ac | 13 +++++++++++++
> run.in | 10 +++++-----
> v2v/link.sh.in | 2 +-
> 3 files changed, 19 insertions(+), 6 deletions(-)
>
> diff --git a/configure.ac