Displaying 20 results from an estimated 1000 matches similar to: "failing automatic incoming check"
2020 Sep 09
3
more Matrix weirdness
I think that this is because `[<-` dispatches on S4 methods only if the first argument is S4.
?"[<-" says:
"These operators are also implicit S4 generics, but as primitives,
S4 methods will be dispatched only on S4 objects ?x?."
Georgi Boshnakov
-----Original Message-----
Message: 19
Date: Tue, 8 Sep 2020 22:04:44 -0400
From: Ben Bolker <bbolker at
2018 May 04
2
Debugging "SETLENGTH() cannot be applied to an ALTVEC object."?
Hi all,
I wish to push a new version of a package (heatmaply).
I sent it to winbuild with no issues but after submitting it to CRAN I got
an update that it breaks on Debian, see:
package heatmaply_0.15.0.tar.gz does not pass the incoming checks
automatically, please see the following pre-tests:
Windows: <https://win-builder.r-project.org/incoming_pretest/
2020 Sep 25
1
Extra "Note" in CRAN submission
When I run R CMD check on the survival package I invariably get a note:
...
* checking for file ?survival/DESCRIPTION? ... OK
* this is package ?survival? version ?3.2-6?
* checking CRAN incoming feasibility ... NOTE
Maintainer: ?Terry M Therneau <therneau.terry at mayo.edu>?
...
This is sufficient for the auto-check process to return the following failure message:
Dear maintainer,
2018 Mar 05
2
Problem with Rd2.tex tduring compilation
Hello, I am receiving this message when uploading my R package to rdevel.
https://win-builder.r-project.org/incoming_pretest/180305_110240_Compositional_29/00check.log
Can anybody please help?
[[alternative HTML version deleted]]
2018 Mar 05
2
Σχετ: Problem with Rd2.tex tduring compilation
Hi and thanks for the prompt reply. I cannot say I understood or know what to do.
Can you please tell me which is this mailing list?
???? 2:15 ?.?. ???????, 5 ??????? 2018, ?/? Michael Dewey <lists at dewey.myzen.co.uk> ??????:
The error is that one of your documentation files is failing. Try
compiling each one separately with
R CMD Rd2pdf yourfilenamehere.Rd
and see what
2020 Sep 10
0
more Matrix weirdness
>>>>> Georgi Boshnakov
>>>>> on Wed, 9 Sep 2020 10:48:56 +0000 writes:
> I think that this is because `[<-` dispatches on S4
> methods only if the first argument is S4. ?"[<-" says:
> "These operators are also implicit S4 generics, but as
> primitives, S4 methods will be dispatched only on S4
> objects
2018 Mar 05
0
Problem with Rd2.tex tduring compilation
The error is that one of your documentation files is failing. Try
compiling each one separately with
R CMD Rd2pdf yourfilenamehere.Rd
and see what happens.
There is a list especially for package developers which might be better
in future.
Michael
On 05/03/2018 10:51, michael tsagris via R-help wrote:
> Hello, I am receiving this message when uploading my R package to rdevel.
>
2018 Sep 20
3
future time stamps warning
Dear developers,
Upon CRAN submission I have bumped into "future file timestamps" warning
that I can't solve. I have updated the package as usual, and all checks go
through in my system. CRAN reports the following warning however.
* checking for future file timestanps ... WARNING
Files with future time stamps:
DESCRIPTION
NAMESPACE
README.md
The build log is at
2018 Mar 05
0
Σχετ: Problem with Rd2.tex tduring compilation
https://stat.ethz.ch/mailman/listinfo/r-package-devel
On 05/03/2018 13:46, michael tsagris wrote:
> Hi and thanks for the prompt reply. I cannot say I understood or know
> what to do.
> Can you please tell me which is this mailing list?
>
>
>
> ???? 2:15 ?.?. ???????, 5 ??????? 2018, ?/? Michael Dewey
> <lists at dewey.myzen.co.uk> ??????:
>
>
> The
2018 Sep 20
3
future time stamps warning
Time stamps are correct and my system time is correct.
I am now tried to use Sys.setFileTime() to update time stamps as proposed.
This does not help.
The windows and debian builds give different reports on the time stamp
issue.
https://win-builder.r-project.org/incoming_pretest/eurostat_3.2.8_20180920_122655/Windows/00check.log
2020 May 23
1
GCC warning
On 23/05/2020 07:38, Simon Urbanek wrote:
> Adrian,
>
> newer compilers are better at finding bugs - you may want to read the full trace of the error, it tells you that you likely have a memory overflow when using strncpy() in your package. You should check whether it is right. Unfortunately we can?t help you more specifically, because I don't see any link to what you submitted so
2005 Nov 30
3
setting R_LIBS
Hello,
I'm adding a private library tree in my home directory by adding this to
my ~/.Renviron:
R_LIBS="~/R/library:${R_LIBS}"
so that once in R:
R> cat(Sys.getenv("R_LIBS"), "\n")
~/R/library:/usr/local/lib/R/site-library:/usr/lib/R/site-library:/usr/lib/R/library
Is this the best way to proceed?
Cheers,
--
Sebastian P. Luque
2011 May 25
1
L-BFGS-B and parscale in optim()
Hi,
When using method L-BFGS-B along with a parscale argument, should the
lower and upper bounds provided be on the scaled or unscaled values?
Thanks.
Cheers,
--
Seb
2005 Feb 22
6
rodbc or unixodbc error
Hi,
I'm trying to establish a connection to a MySQL database, and am using the
rodbc package for it. This is in a GNU/Debian Linux box, with the
corresponding Debian unstable packages. I can login to my MySQL databases
from any shell and directory, so the problem is probably not there. Here's
an example of what I'm doing:
R> odbcConnect("test",
2006 Mar 15
3
concatenating factor from list
Hi,
I've run into a ridiculous problem I can't find any solutions for in the
archives or help pages:
data(barley)
cutYield <- with(barley, by(yield, variety, cut, breaks = c(0, 30, 60, 90)))
As in this example, I'm using 'by' to return a factor for each level of
another factor. The problem is that 'by' returns a list of the factors,
and I need all these factors
2005 Apr 07
2
newline in lattice axis label
Hi,
I have a 3 panel xyplot with different variables in the y axis. I'm trying
to insert a newline after "Width (cm)," in the ylab argument as in the
example below. My goal is to have the y axis label broken into two lines,
split after the string just mentioned.
plotfun <- function() {
fakedf <- data.frame(A = sample(1:100, 50),
B = rnorm(50),
2004 Feb 17
10
How to write efficient R code
I have been lurking in this list a while and searching in the archives to
find out how one learns to write fast R code. One solution seems to be to
write part of the code not in R but in C. However after finding a benchmark
article (http://www.sciviews.org/other/benchmark.htm) I have been more
interested in making the R code itself more efficient. I would like to find
more info about this. I have
2005 Mar 23
2
alternative to 'groups' for lattice bwplot()
Hi,
Is there some alternative to the 'groups' argument in lattice's bwplot
function for boxplots? Say in the example below:
bwplot(yield ~ site | year, data = barley)
you want to have two side by side boxplots per site, corresponding to each
year in the barley data frame. Ideally, the space between boxplots of the
same site should be smaller than that between boxplots of different
2016 Apr 07
5
UDP de-fragmentation problem
Hi all.
I have a strange problem at hand regarding UDP fragmentation on Centos7:
Applications are unable to receive UDP packets which have undergone
fragmentation UNLESS the netfilter modules are loaded.
The problem arose on a application which would run fine on OpenSuse but
does not work on Centos7. The application processes UDP data and on
Centos only small packets are received and processed,
2018 Sep 20
0
future time stamps warning
On Thu, Sep 20, 2018 at 11:46 AM Leo Lahti <leo.lahti at iki.fi> wrote:
>
> Time stamps are correct and my system time is correct.
>
> I am now tried to use Sys.setFileTime() to update time stamps as proposed.
> This does not help.
>
> The windows and debian builds give different reports on the time stamp
> issue.
>