Displaying 8 results from an estimated 8 matches for "tryquiet".
Did you mean:
tryquietly
2004 Mar 10
2
R CMD check errors
...checking package subdirectories ... WARNING
Subdirectory 'data' contains no data sets.
Subdirectory 'src' contains no source files.
* checking R files for syntax errors ... OK
* checking R files for library.dynam ... OK
* checking S3 generic/method consistency ... WARNING
Error in .tryQuietly({ : Error in library(package, lib.loc = lib.loc, character.only = TRUE, verbose = FALSE) :
package/namespace load failed
Execution halted
* checking for replacement functions with final arg not named 'value' ... WARNING
Error in .tryQuietly({ : Error in library(package, lib.loc =...
2004 Jul 08
1
building packages with NAMESPACE
...CE with these
2 lines:
useDynLib(aaa)
export(a1, a2)
Then "R CMD BUILD aaa" works fine, but "R CMD CHECK aaa" gives:
.........
* checking R files for syntax errors ... OK
* checking R files for library.dynam ... OK
* checking S3 generic/method consistency ... WARNING
Error in .tryQuietly({ : Error in library(package, lib.loc = lib.loc,
character.only = TRUE, verbose = FALSE) :
package/namespace load failed
Execution halted
* checking for replacement functions with final arg not named 'value'
... WARNING
Error in .tryQuietly({ : Error in library(package, lib.loc...
2004 Jun 01
1
Problem with .First.lib while running R CMD check
I am having difficulty running R CMD check using the 30May04 version of
R-devel and a new version of the Hmisc package:
* checking S3 generic/method consistency ... WARNING
Error in .tryQuietly({ : Error in library(package, lib.loc = lib.loc,
character.only = TRUE, verbose = FALSE) :
.First.lib failed
Execution halted
See section 'Generic functions and methods' of the 'Writing R Extensions'
manual.
* checking for replacement functions with final arg not named &...
2003 Dec 05
1
rcmd check question.
Hi!
Can anyone tell what may causes the following errors?
They printed during a
>rcmd check packagename
* checking S3 generic/method consistency ... WARNING
Error in .tryQuietly({ : Error in file(file, "r") : unable to open connection
Execution halted
* checking for replacement functions with final arg not named 'value' ... WARNIN
G
Error in .tryQuietly({ : Error in file(file, "r") : unable to open connection
Execution halted
* checking Rd fil...
2003 Dec 24
1
Questions and suggestions about namespaces
...mport(methods)? I'm using S4 methods, but my
functions and methods don't make use of the methods package other than
in their own definition.
4. When running CHECK in r-patched, I got the following inscrutable
errors:
>* checking S3 generic/method consistency ... WARNING
>Error in .tryQuietly({ : Error in library(package, lib.loc = lib.loc, character.
>only = TRUE, verbose = FALSE) :
> package/namespace load failed
>Execution halted
>* checking for replacement functions with final arg not named 'value' ... WARNIN
>G
>Error in .tryQuietly({ : Error in l...
2003 Nov 11
0
Installing and Loading RMySQL on OS X 2.8
...CRIPTION meta-information ... OK
* checking package dependencies ... OK
* checking index information ... OK
* checking package subdirectories ... OK
* checking R files for syntax errors ... OK
* checking R files for library.dynam ... OK
* checking S3 generic/method consistency ... WARNING
Error in .tryQuietly({ : Error in library(package, lib.loc = lib.loc,
character.only = TRUE, verbose = FALSE) :
.First.lib failed
Execution halted
* checking for replacement functions with final arg not named 'value'
... WARNING
Error in .tryQuietly({ : Error in library(package, lib.loc = lib.loc,...
2004 Jan 30
1
a problem loading package 'subselect'
...t if it could'nt find a symbol, that would have
shown up during compilation. But there were no compile time errors. I
also tried R CMD check on the package directory and compilation occurs
with no errors but I get the errors below:
* checking S3 generic/method consistency ... WARNING
Error in .tryQuietly({ : Error in library(package, lib.loc = lib.loc,
character.only = TRUE, verbose = FALSE) :
.First.lib failed
Execution halted
(And more such errors)
I have contacted the author of the package and he sent me few postings
regarding the f_iob symbol and it appears to be a problem resulting...
2004 Jan 14
0
rcmd check question.
...which I finally tracked down to the
following:
I had accidentally left an extraneous "test.R" in my pkg/R directory;
that file contained a system call to an external program that created a
particular file, which I then tried to read into R. The R code that
triggered the error from .tryQuietly was the attempt to open the file. I
figured this out by stripping the "test.R" file down to
system("test1.bin")
con <- file("test.out","r")
where "test1.bin" is a binary executable that produces a file called
"test.out".
Wrapping...