Displaying 2 results from an estimated 2 matches for "list_files_with_typ".
Did you mean:
list_files_with_type
2008 Oct 06
1
Bioconductor installation on 64 bit R problem
...--------
Most of the bioconductor packages won't install, for examples 'Biobase'
errors with:
** building package indices ...
Loading required package: methods
Error in dim(robj) <- c(dX, dY) :
dims [product 8] do not match the length of object [16]
Calls: <Anonymous> ... list_files_with_type -> .make_file_exts -> switch
-> outer
Execution halted
ERROR: installing package indices failed
** Removing '/usr/local/lib/R/library/Biobase'
The downloaded packages are in
/tmp/RtmpHGbpND/downloaded_packages
Updating HTML index of packages in '.Library'
Warning...
2013 Jun 19
2
str and s3 classes
Hi all,
Because str uses the generic version of length and names, it's
currently very easy to create objects that break str:
a <- structure(list(1:5), class = "a")
length.a <- function(x) 2L
str(a)
b <- structure(list(1:5), class = "b")
names.b <- function(x) character()
str(b)
These are obvious toy examples, but it is a real problem if you want
to create