similar to: R CMD build says, 'Can't call method "print"'

Displaying 20 results from an estimated 8000 matches similar to: "R CMD build says, 'Can't call method "print"'"

2004 Jan 28
1
build fails to build help for nlme
Hi all, I'm trying to build from source on Linux and getting the following error when it tries to build the help for 'nlme': <snip> ranef.lme text html latex example reStruct text html latex example /home/sfalcon/sw/R-related/R-1.8.1/bin/INSTALL: line 1: 8133 Segmentation fault ${R_CMD} perl
2007 Apr 26
1
Problem with R-2.5.0 patched and Matrix package
Hi, Using latest R 2.5.0 Patched, I'm unable to install the Matrix package from cran.fhcrc.org. I get: Creating a new generic function for "isSymmetric" in "Matrix" Creating a new generic function for "unname" in "Matrix" Error in conformMethod(signature, mnames, fnames, f) : In method for function "!": formal arguments omitted in
2007 May 27
2
[Bioc-devel] promptClass
promptClass fails to identify methods associated with the class. Here is a fix: Index: promptClass.R =================================================================== --- promptClass.R (revision 41719) +++ promptClass.R (working copy) @@ -165,7 +165,7 @@ if (nmeths > 0) { .meths.body <- " \\describe{" for (i in 1:nmeths) { - .sigmat
2006 Jan 20
1
R CMD check, NAMESPACE, import: bad error?
I'm seeing errors with R CMD check that I don't understand when checking a package that uses a NAMESPACE file with an import directive. The imported package is listed in the DESCRIPTION file in the Imports field. DESCRIPTION contains: Imports: arules NAMESPACE contains: import(arules) The package builds without warnings and installs and loads just fine. But check has this to
2015 Jun 29
2
Moving from compiled to packages
I have been using Ubuntu 12.04 for awhile and built samba from source. I have two servers, both on 12.04. Samba bulid 4.1.11. I would like to upgrade the servers to 14.04 and start using the actual pacakges from ubuntu. How do I get from compiled binarys to using the ubuntu pacakge? Thanks for any help. Jason
2009 Oct 16
1
(PR#14012)
I think Rscript has a problem running files that have mac encodings for newline (^M rather than ^J on linux). If I source the file within R, it works okay: > source('j.R') [1] "MEA_data/sernagor_new/CRX_P7_1.txt" But if I run the file using Rscript on a linux box I get a strange error message: $ Rscript --vanilla j.R " Execution halted The example script j.R is at
2020 Jan 16
3
Git autocrlf for Windows - why does the Getting Started guide say to use false?
Right, my understanding is that files that specifically need CRLF should say so via .gitattributes somewhere. autocrlf=false ought to work if your Windows editor doesn’t (or can be persuaded not to) introduce CRLFs. I’ve observed that the Visual Studio editor will detect the line-ending style of the file you’re editing, and imitate it. This works great until you create a new file. 😝 So I’ve
2015 Jun 29
3
Moving from compiled to packages
I understand about using the newer binaries, but what I really want to "save" is the active directory. Sorry I should have been clear. I do not want to have to rejoin/recreate everything. Thanks. Jason On Mon, Jun 29, 2015 at 10:23 AM, Reindl Harald <h.reindl at thelounge.net> wrote: > > Am 29.06.2015 um 15:06 schrieb Jason Waters: > >> I have been using Ubuntu
2003 Feb 19
3
Pretty onscreen plots?
I'm looking for ideas for creating high-quality plots for use in projected presentations (powerpoint, etc) --- ideally high-quality png, jpg, bmp. The graphics produced using the postscript device look very good. Those generated with win.graph(), png are plagued by the jaggy lines. So far, the only way I can use the postscript plots in my presentations is using separate screen capture
2001 Nov 20
2
IE on Redhat 7.2
Hello. I have a computer running Redhat 7.2 and the Wine pacakge. This computer has no Windows partitions on it. From what I've read it's easier to get programs to run under Wine if you have a Windows partition. I really don't want one because it only has 4 gigs of hard drive space in the computer and I only use if for Linux. Has anybody tried to do this before? Any info would be
2017 Dec 29
2
data compression in a package
The submission guide has the following cryptic (to me) sentence: ?? "Reasonable compression should be used for data (not just .rda files) " The survival pacakge has a fairly large number of data files --- exactly what should I be doing??? xz compression? Terry T.
2013 Mar 20
2
Dealing with missing values in princomp (package "psych")
Hello! I am running principle components analysis using princomp function in pacakge psych. mypc <- princomp(mydataforpc, cor=TRUE) Question: I'd like to use pairwise deletion of missing cases when correlations are calculated. I.e., I'd like to have a correlation between any 2 variables to be based on all cases that have valid values on both variables. What should my na.action be in
2005 Jun 24
2
Gini with frequencies
Hi there, I am trying to compute Gini coefficients for vectors containing income classes. The data I possess look loke this: yit <- c(135, 164, 234, 369) piit <- c(367, 884, 341, 74 ) where yit is the vector of income classes, and fit is the vector of associated frequencies.(This data is from Rustichini, Ichino and Checci (Journal of Public Economics, 1999) ). In ineq pacakge, Gini( )
2013 Apr 23
1
Questions on function "readNamedRegionFromFile" in XLConnect pacakge
Hi, I have two questions on the function "readNamedRegionFromFile" in XLConnect pacakge. 1. In the documentation, # multiregion xlsx file from demoFiles subfolder of package XLConnect demoExcelFile <- system.file("demoFiles/multiregion.xlsx", package = "XLConnect") # Load a single named region into a single data.frame. df
2015 Jun 29
1
Moving from compiled to packages
So I can just copy the data into the new directory the package creates? On Mon, Jun 29, 2015 at 10:42 AM, Reindl Harald <h.reindl at thelounge.net> wrote: > > > Am 29.06.2015 um 16:28 schrieb Jason Waters: > >> I understand about using the newer binaries, but what I really want to >> "save" is the active directory. Sorry I should have been clear. I do
2007 May 17
3
RFC: adding an 'exact' argument to [[
Hi all, One of the things I find most problematic in R is the partial matching of names in lists. Robert and I have discussed this and we believe that having a mechanism that does not do partial matching would be of significant benefit to R programmers. To that end, I have written a patch that modifies the behavior of "[[" as follows: 1. [[ gains an 'exact' argument with
2012 Apr 24
2
Write unix format files on windows and vice versa
I go back and forth between windows and linux, and find myself running into problem with line endings. Is there a way to control the line ending conversion when writing files, such as write and cat? More explicitly I want to be able to write files with LF line endings rather than CRLF line ending on windows; and CRLF line endings instead of LF on linux, and I want to be able to control when the
2003 Dec 02
2
Two questions about the creating new package
Hello everyone, I am just trying to colloct all my function into a new packages. I met two questions which hurt me so much: 1. when I use the "prompt" to help to write Rd file for a variable x which is character vector, say x <- c("a","b"), it always give the error informaion: Error in get(x, envir, mode, inherits) : variable "a" was not found.
2005 Mar 21
1
Buglet in install.packages warning message
I've been experimenting with install.packages and it's new ability to track down dependencies from a list of repositories and encountered this: install.packages(c("foo", "bar"), repos="http://cran.r-project.org", dependencies=c("Depends", "Suggests")) dependencies 'foo' are not availabledependencies 'bar'
2006 Sep 22
1
Possible bug in base::namespaceImportFrom?
Hi, namespaceImportFrom in base/R/namespace.R has the following: fdef <- methods:::getGeneric(genName, impenv) The definition of getGeneric is in methods/R/RMethodUtils.R starts with: getGeneric <- ## return the definition of the function named f as a generic. ## ## If there is no definition, throws an error or returns ## NULL according to the value of