search for: rcompression

Displaying 20 results from an estimated 32 matches for "rcompression".

Did you mean: compression
2011 Jul 13
3
Rcompression on MAC - where is it?
Hello I need to run an r-file that works on Windows on MAC. The first lines of the file are: library(R.matlab) library(Rcompression) Somehow I cannot find where Rcompression is. Am I missing something? Many thanks Ed
2009 May 11
1
Rcompression on Omegahat
I tried to install Rcompression (for reading Matlab files) options(CRAN = c(getOption("CRAN"), "http://www.omegahat.org/R")) install.packages("Rcompression") Warning: unable to access index for repository http://www.omegahat.org/R/bin/windows/contrib/2.9 Warning message: In getDependencies(pkgs, d...
2012 Jan 30
1
Installing Rcompression package
Un texte encapsul? et encod? dans un jeu de caract?res inconnu a ?t? nettoy?... Nom : non disponible URL : <https://stat.ethz.ch/pipermail/r-help/attachments/20120130/f1fca828/attachment.pl>
2010 Dec 19
2
R.matlab memory use
Hi, I am trying to load into R a MATLAB format file (actually, as saved by octave). The file is about 300kB but R complains with a memory allocation error: > library(Rcompression) > library(R.matlab) Loading required package: R.oo Loading required package: R.methodsS3 R.methodsS3 v1.2.0 (2010-03-13) successfully loaded. See ?R.methodsS3 for help. R.oo v1.7.2 (2010-04-13) successfully loaded. See ?R.oo for help. R.matlab v1.3.1 (2010-04-20) successfully loaded. See ?R.mat...
2010 Jul 23
0
ROpenOffice (which requires Rcompression)
...apply changes to the labelling or so, and I haven't found a plugin or an application which does this batch in OOorg. Is there new development on a direct import package for ODS files? I've googled around one afternoon, found ROpenOffice (http://www.omegahat.org/ROpenOffice/) which requires Rcompression (http://www.mail-archive.com/r-help at r-project.org/msg55480.html), which in turn is quite outdated. Is the whole idea dead or did I miss something important when googling? *S* (R version 2.11.1 (2010-05-31), x86_64-apple-darwin9.8.0) -- S?ren Vogel, Dipl.-Psych. (Univ.), PhD-Student, Eawag, D...
2009 May 05
1
Rcompression and Java Deflator
...class. > readBin("row_1",raw(),10000000) [1] 4c 45 50 e2 49 d5 86 bc 48 a1 32 5d 49 9d f5 90 48 e0 14 33 49 8f 54 6a 49 77 c9 48 48 d9 ec 56 47 91 48 f0 47 25 56 ef 47 b8 f5 7b 46 35 25 00 47 73 11 c5 48 6c 8e b9 47 ca 71 92 46 8d dc aa 45 92 0e I?m trying to read it into R with Rcompression and I can't get it to work. I think it may be because Java?s Deflator class by default (see below ... the nowrap parameter) writes the data without the header and checksum. I can't change the Java creation code. I think uncompress() reads a zlib package (with headers) and gunzip() reads...
2010 Oct 28
2
R and Matlab
Dear Group, I am looking for ways to use R and Matlab. Doing the data transformations in R and using the data in Matlab to analyze with some pre-defined scripts. Any good ways to transfer the data into matlab in its most recent version? I tried using R.matlab but the writeMat output is not readable by Matlab. I just need to output a data.frame and read it as is into matlab where I can do any
2013 Feb 14
0
Install package "ROpenOffice"
...rlbrown/Library/R/2.15/library? (as ?lib? is unspecified) * installing *source* package ?ROpenOffice? ... ** R ** inst ** preparing package for lazy loading ** help *** installing help indices ** building package indices ** testing if installed package can be loaded *** arch - i386 Error : package ?Rcompression? is not installed for 'arch=i386' Error: loading failed Execution halted *** arch - x86_64 ERROR: loading failed for ?i386? * removing ?/Users/earlbrown/Library/R/2.15/library/ROpenOffice? Warning message: In install.packages("/Users/earlbrown/Desktop/ROpenOffice_0.4-0.tar.gz", :...
2008 Jul 20
0
R CMD check test examples with and without Suggest installed
...ice, once with all Suggest package hidden or once, if $R_check_force_suggests=1, with all Suggest available? BACKGROUND: I just had a case where my R.matlab package passed all R CMD checks on my local machine, but when I uploaded it to CRAN it gave an error there. R.matlab has Omegahat's 'Rcompression' package listed under Suggest: in DESCRIPTION. I've put it there, because it is optional. The example(readMat) scans an inst/ directory for *.mat files and asserts that they can be read. One of them required 'Rcompression', which is not installed by the CRAN servers. I can of co...
2017 Aug 18
2
R Issues with packages
...quot;http://cran.rstudio.com")) That returns this Warning in install.packages : package ?tcltk? is not available (for R version 3.3.3) Warning in install.packages : package ?tcltk? is a base package, and should not be updated Warning in install.packages : dependencies ?GenomicRanges?, ?Rcompression? are not available Warning in install.packages : unable to access index for repository http://rstudio.org/_packages/bin/windows/contrib/3.3: cannot open URL 'http://rstudio.org/_packages/bin/windows/contrib/3.3/PACKAGES [[alternative HTML version deleted]]
2013 Nov 27
1
inflate zlib compressed data using base R or CRAN package?
Hello, I have a binary file type that includes a zlib compressed data block (ie not gzip). Is anyone aware of a way using base R or a CRAN package to decompress this kind of data (from disk or memory). So far I have found Rcompression::decompress on omegahat, but I would prefer to keep dependencies on CRAN (or bioconductor). I am also trying to avoid writing yet another C level interface to part of zlib. Many thanks for any pointers, Greg. -- Gregory Jefferis, PhD Division of Neurobiology MRC Laboratory of Molecular Biology...
2010 Feb 10
2
write.zip?
Can one write a zip file from R? I want to create a file with a name like "dat.zip", being a zip file containing "dat.csv". I can create "dat.csv", then call "system('zip -r9 dat.zip dat.csv')". Is there a better way? I can use "gzfile" to write a gz file, but I don't know how to give that a structure that would
2008 Jan 30
2
[rfc] Package to access the internal zlib library.
To make R.matlab's readMat work for me[1] I needed access to zlib's uncompress function. R already links with zlib, and sometime last year I hobbled together a quick package to get at a few functions. It's my first package, so I would love feedback both on the package and its purpose. I've dropped a temporary copy at http://jriedy.users.sonic.net/internalzlib_0.1.tar.gz Could
2017 Aug 18
0
R Issues with packages
...> >That returns this > >Warning in install.packages : > package ?tcltk? is not available (for R version 3.3.3) >Warning in install.packages : > package ?tcltk? is a base package, and should not be updated >Warning in install.packages : > dependencies ?GenomicRanges?, ?Rcompression? are not available >Warning in install.packages : > unable to access index for repository >http://rstudio.org/_packages/bin/windows/contrib/3.3: >cannot open URL >'http://rstudio.org/_packages/bin/windows/contrib/3.3/PACKAGES > > [[alternative HTML version deleted]] > &...
2017 Aug 18
1
R Issues with packages
...>> >>Warning in install.packages : >> package ?tcltk? is not available (for R version 3.3.3) >>Warning in install.packages : >> package ?tcltk? is a base package, and should not be updated >>Warning in install.packages : >> dependencies ?GenomicRanges?, ?Rcompression? are not available >>Warning in install.packages : >> unable to access index for repository >>http://rstudio.org/_packages/bin/windows/contrib/3.3: >>cannot open URL >>'http://rstudio.org/_packages/bin/windows/contrib/3.3/PACKAGES >> >> [[alterna...
2010 Nov 10
3
RGoogleDocs stopped working
...uot;RGoogleDocs" "/Library/Frameworks/R.framework/Resources/library" "0.4-1" NA NA NA Depends Imports LinkingTo Suggests Enhances OS_type License Built RCurl "R (>= 2.7.0), methods, bitops" NA NA "Rcompression" NA NA "BSD" "2.10.1" RGoogleDocs "RCurl, XML, methods" NA NA NA NA NA "BSD" "2.10.1" Any ideas? Thank you! -Harlan [[alternative HTML version deleted]]
2008 Feb 29
1
using zlib (was compress data on read, decompress on write)
...better off including my own copies of zlib.h, although I understand that the message is not referring explicitly to the new R 2.7.0. Thanks, R. On Thu, Feb 28, 2008 at 8:53 PM, Prof Brian Ripley <ripley at stats.ox.ac.uk> wrote: > One solution is likely to be the Omegahat package Rcompression. > > Otherwise, R does have internal facilities to do internal (gzip) > compression and decompression (e.g. see the end of > src/main/connections.c), and you could make creative use of serialization > to do the compression. > > > On Thu, 28 Feb 2008, Ramon Diaz-Uriarte...
2011 Feb 18
1
reading a matlab file
Dear R-people, I am trying to read a matlab file, unfortunately without success. I enclosed the zipped file. Do you have an idea how to read this file by ReadMat package into the R system? Thanks for your time! Wim Krijnen
2011 Oct 17
0
[Reading mat files into R]
...dMat* (from “R.matlab” package). Even saving mat files in one of the previous formats (which can bet set in preference panel) didn’t resolve my problem. When I want to load mat file, created by Matlab 2011b release by using following commands: *require(R.matlab)* *require(utils)* *require(Rcompression)* * * *dataPath<- Q:/data/mat”;* *matList<-list.files(path = dataPath) * *matQuantity<-length(matList)* *MatFile<-readMat(file.path(paste(c(dataPath,’/’,matList[1]),collapse=””)), sparseMatrixClass=”matrix”);* * * my CPU usage is increasing even till 100% but memory usage stays...
2013 Mar 28
2
Can R read open office.org Calc files
Hi, Can R read open office.org Calc files Thanks -- Shane [[alternative HTML version deleted]]