similar to: R.matlab_1.2.4.tgz best library for loading *.mat files?

Displaying 20 results from an estimated 40000 matches similar to: "R.matlab_1.2.4.tgz best library for loading *.mat files?"

2011 Oct 04
0
number of analogs in significance test of MAT reconstructions using randomTF from palaeoSig
I'm trying to use the randomTF function from package palaeoSig to test the significance of a MAT reconstruction with nine analogs and a WA-PLS reconstruction with four components. I'm probably missing something obvious here but how do I make sure that randomTF is testing the reconstruction based on the desired number of analogs / components? In: fitmap.wapls = WAPLS( lumapspc,
2011 Oct 17
0
[Reading mat files into R]
Dear R users, I work with Matlab & R simultaneously. Usually I used to read successfully mat files (cell, structure, etc.) into R, till Matlab 2011b release. For reading mat files (or maybe I should say, converting it into R variable or structure) I’m using *readMat* (from “R.matlab” package). Even saving mat files in one of the previous formats (which can bet set in preference panel)
2000 Sep 02
1
R INSTALL *.tgz fails (minor docs/feature bug) (PR#652)
R Team, I was attempting to install Lindsey's rmutil.tgz and other non-CRAN packages using 'R INSTALL', for example 'R INSTALL rmutil.tgz' after downloading 'rmutil.tgz' from Lindsey's page (as linked from r-project.org page). Directly using the compressed file as 'R INSTALL rmutil.tgz' failed, though the shell help from 'R INSTALL --help'
2005 May 05
2
names(dist(mat)) gives NULL in R 2.1.0
Dear list, I do not know if this is a bug. Let's suppose mat is a matrix derived from this code: > x<-rnorm(10) > y<-rnorm(10) > names(x)<-LETTERS[1:10] > names(y)<-LETTERS[1:10] > mat<-cbind(x,y) Now in R 2.0.1 I have: > names(dist(mat)) "A" "B" "C" "D" "E" "F" "G" "H"
2005 Sep 09
3
how to do something like " subset(mat, ("col1">4 & "col2">4)) "
Dear all, I have a problem with the "subset()" function. I spent all day yesterday with a collegue to solve it and we did not find a satisfying solution (even in the archived mails), so I ask for your help. Let's say (for a simple example) a matrix mat: R> mat cola colb colc [1,] 1 4 7 [2,] 2 5 8 [3,] 3 6 9 My goal is to select the lines of the matrix on the basis of the
1998 Nov 23
1
R-0.63.0.tgz untar problem!
Hi to all R people!!! I'mtryed to untar R-0.63.0.tgz but .... C:\Archivio\R\R-0.63.0>tar -x -z -f R-0.63.0.tgz tar: R-0.63/aux: Could not create directory: No such file or directory (ENOENT) tar: R-0.63/aux/GETSYMBOLS: Could not create file: No such file or directory (EN OENT) tar: R-0.63/aux/config.sub: Could not create file: No such file or directory (EN OENT) tar:
2009 Jul 21
2
mboot.c32, NUMA and tgz
Hi all, I'm attempting to PXE boot ESXi, which uses the syslinux mboot.c32 module. The mboot.c32 included with ESXi seems to be an older version that runs into an "out of memory loading.." problem halfway through, even though the box has 8GB memory. This may be related to NUMA, since it works fine on an older box but not the newer blade. I saw that some non-contiguous memory issues
2006 Aug 17
0
Radiant 0.5.2 - Bad Zip and Tgz Packages
I failed to package up the Zip and Tar correctly for Radiant 0.5.2. They each included Rails 1.1.5 instead of 1.1.6. I?ve repackaged the files and they should be ready for download as soon as they propagate to the appropriate servers: * http://rubyforge.org/frs/download.php/12493/radiant-0.5.2-2.tgz * http://rubyforge.org/frs/download.php/12494/radiant-0.5.2-2.zip Since Rails 1.1.5 has a
1997 Feb 24
1
i386-elf-xquake-1.01.tgz
-----BEGIN PGP SIGNED MESSAGE----- This .tgz file contains a shell script called "runme" which contains the following: #!/bin/sh cat /proc/cpuinfo /proc/devices /proc/meminfo /proc/version \ /proc/filesystems /proc/interrupts /proc/ioports /proc/modules \ /proc/pci | mail machines@crack.com It is possible that this is just to conduct a little research into who is
2004 Mar 02
1
Problem untarring R-1.8.1.tgz
Hi, I have been trying to untar the source file for R and having no success. I have used decompression utilities that handle .tar and .tgz file but I keep getting an error that there is a "Header CRC Error". So, I am wondering if this is just me and I am not using the right decompression utility or whether there is an error in the headers for the zip file. Anyone have any advice?
2009 Jul 16
6
Best way to replace :SS with :00
Not sure if there is an R way to do this or a regular express way, but here is what I am trying to do. I've got lots of data where the format is HH:MM:SS, but I need to format it like HH:MM:00, i.e. round the second down to zero. What is the best way to do this? Thanks again. Jason
1998 Mar 02
1
R-beta: Rnotes.tgz
My question is really to Robert and Ross (and also to Bill Venables and Dave Smith) -- but I thought that there might be wider interest in it. The "Notes on R" in the file Rnotes.tgz is copyrighted to the above authors -- can I make copies of it to distribute? I suspect that the intention of the authors is that Rnotes be as re-distributable as R itself. However there is no GNU license
2009 Jul 09
5
Best way to export values from a function?
Maybe there is a great website out there or white paper that discusses this but again my Google skills (or lack there of) let me down. I would like to know the best way to export several doubles from a function, where the doubles are not an array. Here is a contrived function similar to my needs: multipleoutput<-function(x) { squared<-x^2 cubed<-x^3 exponentioal<-exp(x)
2006 Oct 17
5
Puppet tgz installs...
Hi I''m anxious to get puppet into production, and although I''d prefer installing puppet as a .deb package (as most of the servers in our shop runs Debian), I think I''ll try to get some of my not-so- important servers into my test setup by installing puppet with the .tgz files. Upon the first installation I realize that puppetd and puppetmasterd is copied to
2012 Mar 12
1
2 images on one plot
Dear all with image I can plot only one set of values in one plot. Do somebody have any insight how to put those 2 matrices into one picture so that in one cell in image picture are both values from mat[1,1] and mat2[1,1]. mat<-matrix(1:4, 2,2) mat2<-matrix(4:1,2,2) x <-1:2 y <-1:2 image(x, y, mat) image(x, y, mat2) The only way I found is to mix x or y for both matrices let
2007 Oct 16
1
library(car): Anova and repeated measures without between subjects factors
Hi, sorry if this is explained somewhere but I didn't find anything. How can I use "Anova" from the car package to test a modell without between subject's factors? Suppose I have the following data mat.1 mat.2 mat.3 di ex 1 85 85 88 1 1 2 90 92 93 1 1 3 97 97 94 1 1 4 80 82 83 1 1 5 91 92 91 1 1 6 83 83
2009 Nov 20
6
How to add a top level title to multiple plots
How can I add an overall plot title to these four plots? I would like to have something that says, "Distribution Comparisons": par(mfrow = c(2, 2)) # Plot 1 plot(rnorm(10),type="l",col="red") title(main = list(paste("Normal"), ????????????????????????? col="black", cex = 1.0)) # Plot 2 plot(rpois(10,
2009 Aug 04
5
Stacked plots with common x-axis and different y-axis
Is there a place that shows how to create two plots that are stacked on top of each other where they share a common x-axis scale, but have differnt y-axis scale? Say have the following data: airquality Stack plot(airquality$Day, airquality$Wind) on top of plot(airquality$Day, airquality$Temp). I am interested in stacking the two on top of each other with no seam, or plotting the two lines with
2009 Jan 27
1
3-axis Barplots (plus qplot like staked histogram capability)
Searched my R reference docs*, and the Rseek, but evidently I've overlooked this capabilty.    Is it possible to produce a 3d Barplot using R?   For example would like to have a three axis bar plot - \ x-axis = location(discrete), y-axis = data value, z-axis = frequency of value occurance (of location and value)   Would also if could also do something like what "qplot" allows,
2009 Dec 15
2
Diagonal Labels on "Beside" Bars in Barplot
My question is based on an example provided in the following: Referencing: Statistics with R Vincent Zoonekynd <zoonek at math.jussieu.fr> 6th January 2007 URL: http://zoonek2.free.fr/UNIX/48_R/all.html data(HairEyeColor) a <- as.table( apply(HairEyeColor, c(1,2), sum) ) # Provided Example barplot(a, beside = TRUE, legend.text = attr(a, "dimnames")$Hair) # I