Displaying 20 results from an estimated 200 matches similar to: "behaviour of xls2sep when running read.xls (package gdata) sinceupgrade of R"
2011 Jan 03
7
Saving objects inside a list
Hello there,
any ideas on how to save all the objects on my workspace inside a list
object?
For example, say my workspace is as follows
ls()
[1] "x" "y" "z"
and suppose I want to put these objects inside a list object, say
object.list <- list()
without having to explicitly write down their names as in
object.list$x = x
object.list$y = y
object.list$z = z
Is
2011 Jun 28
0
problem with rJava : same as message from wwreith on Mon, 27 Jun 2011
Hi R-listers,
I run R version 2.13.0, on a i386-pc-mingw32/i386 platform under Windows XP.
I perform daily update of my installed packages.
I've got the most recent Java for this platform installed, as I am told
by the JavaUpdater when checking.
(and I've read the posting guide, so that I'm not going to get fired by
Uwe as poor wwreith [joke])...
But :
since one of the last daily
2007 Feb 08
1
Re : Re: setting a number of values to NA over a data.frame.
Hi again,
Awfully sorry John, I should have been sleeping and did not see your
full post....
here is a way, unless I miss the point again :
fake<-as.data.frame(cbind(seq(1,10,by=1),c(rep(1,4),rep(0,4),rep(2,2))))
# from my previous post
# one moree column this time !
fake3<-cbind(fake,fake$V2)
index<-c(2,3)
fake3[,index][fake3[,index]==0]<-NA
not nice, but seems to do the job.
2012 Mar 19
1
plot method for rasters and layout
Hi list,
I thought I was used to layouts, but today I am facing a problem I cannot
overcome :
On my R installation (Windows 7 Pro, SP1, R version 2.13.0, daily update of
packages), I am not able to put raster plots in user defined layouts :
> layout.matrix<-matrix(c(1,2,3,4,5,5),2,3)
> layout(mat=layout.matrix)
> layout.show(5)
works fine, I get the correct frames in
2007 Jul 09
1
about scagnostics
Hi Hadley,
thank you for providing this "scagnostics" primer....
I was trying to do some basic testing, and I see that I probably missed
some points :
first it's not clear for me if the argument of "scagnostics" should be
raw data or "processed" data (results of calling "splom" or whatever...).
If the first, I thought (from Wilkinson & al.) that if
2012 Apr 17
1
differents behaviour of packages depending on rJava under 32 and 64 bit versions of R 2.14.2
Hi listeRs,
Maybe I have missed something, but I am facing a problem I don't understand
even after reading archives and manuals (…maybe not carefully enough !) :
On my PC (64-bit OS, Intel Xeon CPU , two L5506@2.13 GHz processors, 12 Go
RAM) under Windows 7 SP1,
I run both 32-bit (i386-pc-mingw32/i386) and 64-bit (x86_64-pc-mingw32/x64)
version 2.14.2 (2012-02-29) of R, packages
2007 Jan 08
1
R scripts to plot Taylor Diagram
Dear All,
Are there any existing scripts to plot Taylor Diagram (definition see
http://www.ipsl.jussieu.fr/~jmesce/Taylor_diagram/taylor_diagram_definition.html
) ? Thanks a lot!
Linda
[[alternative HTML version deleted]]
2009 Jul 20
2
I might be dumb : a simple question about "foreach"
Hi list,
My attention was drawn to the foreach package by recent posts...I
decided to have a look...
I'm using R.2.9.1 on Windows, I have downloaded the foreach package
today (v 1.2.1), together with iterators (v. 1.0.1) and codetools (v.0.2-2).
Full of hope I try the most simple thing of all out of the package
vignette :
> x <- foreach(i = 1:3) %do% sqrt(i)
and get :
> Erreur
2007 Apr 05
1
Generate a serie of new vars that correlate with existingvar
Hello, list
why not add the smart proposal by Greg Snow as a built-in function in
{stats},
just changing the "x234" and "newc" lines to allow for more
distributions to be generated ?
Or do I miss an already existing function to do that ?
Regards. Olivier
# slight modification of the original code by Greg Snow
[mailto:Greg.Snow at intermountainmail.org]
# on April 04, 2007
2006 Jan 17
3
Kriging for d>3
Hi,
I'm looking for software that can perform kriging on systems with dimensionality higher than 3, say d=5.
Are anyone aware of packages in R that can do this?
Thanks,
Eivind Sm??rgrav
-------------------------------------------------------------------
The information contained in this message may be CONFIDENTIAL and is
intended for the addressee only. Any unauthorised use,
2007 Apr 23
1
how to convert the lower triangle of a matrix to a symmetricmatrix
Sorry if this answer was already given, or if I miss the point,
but did you have a look to "lowerTriangle" and "upperTriangle" functions
in the "gdata" package ?
# example
# A<-matrix(rnorm(9),3,3)
# B<-B<-matrix(NA,dim(A)[1],dim(A)[2])
# lowerTriangle(B)<-lowerTriangle(A)
# upperTriangle(B)<-lowerTriangle(A)
# diag(B)<-diag(A)
Hope this helps,
2005 Oct 07
2
R version 2.01.1, Crimson Editor and the "one" from nowhere
Dear List....
sorry to bother you R-gurus with such an "unstatistical" question... but
I face a problem using Crimson Editor with R 2.01.1 that I never had
using R 2.00.1.
I already posted on the Crimson Editor forum but it seems to be VERY few
R-users there....
I successfully used R v2.00.1until now (under Windows XP professionnal,
version 2002, Service Pack 2, P4 processor CPU 1.8
2008 Mar 19
1
adimpro package : R does not seem to find my ImageMagick installation
Dear list,
(sorry if I post to the wrong place...),
Though having spent some time on it, I cannot find an answer by myself
to the following behaviour of the read.image function (adimpro package) :
I'm running R.2.6.2 on Windows XP. The home directory is C:\Program
files\R\R-2.6.2
Version 0.4.4 of adimpro is loaded.
ImageMagick 6.3.0 is installed, its directory is C:\Program
2007 Feb 08
1
Re : Re: setting a number of values to NA over a data.frame.
Hi John,
Unless I miss a point, why dont you try something like :
# some fake data
> fake<-as.data.frame(cbind(seq(1,10,by=1),c(rep(1,4),rep(0,4),rep(2,2))))
V1 V2
1 1 1
2 2 1
3 3 1
4 4 1
5 5 0
6 6 0
7 7 0
8 8 0
9 9 2
10 10 2
# change 0 by NA
> fake[fake==0]<-NA # or fake$V2[fake$V2==0]<-NA if you
2003 Sep 26
2
polar plotting of complex quantities
Hello to everybody,
... and sorry if the question has already been answered.
I am dealing with complex numbers and need a way of plotting them on
angular plots (2D and 3D). Is there a package that already manage this,
or can somebody in this R-world who could help me with his skill ?
Thanks to all. Have a nice week-end !
Olivier Eterradossi
Ph.D., "PsychoSensory Properties of
2010 Feb 11
1
gdata
Hi
Using R 2.10.1 on a mac os 10.6.2, I have have a problem with gdata package.
When I use the command read.xls, I get this error-message:
Erreur dans xls2sep(xls, sheet, verbose = verbose, ..., method = method, :
Unable to read translated csv file
'/var/folders/gb/gbzQ4sqTF-KK3D5m6v-IJE+++TI/-Tmp-//Rtmp3Hprw9/file10d63af1.csv'.
Erreur dans file.exists(tfn) : argument 'file'
2011 Sep 06
1
read.xls (gdata) problem
I've suddenly started seeing a consistent problem with read.xls.
No matter what xls file I try I always get an error message of this type:
Error in xls2sep(xls, sheet, verbose = verbose, ..., method = method, :
Intermediate file
'/var/folders/cb/vvshkpm90lx_y2n69qlyw4z40000gn/T//RtmpK50r4g/file546a2722.csv'
missing!
In addition: Warning message:
running command
2013 Apr 02
1
gdata selectively not working
I can use gdata to successfully read in the example Excel file, but not any
other excel files. Why might this be the case? It seems that the problem
has something to do with opening the database but no indication as to what
the problem is. So i'm at a loss of how to fix it.
> library(gdata)
gdata: read.xls support for 'XLS' (Excel 97-2004) files ENABLED.
gdata: read.xls support
2005 Apr 20
1
newby trying to solve a system
Dear R-gurus,
being very new to R, (as well as lazy and not too smart !) I have some
problems (and get lost in the docs) trying to write something to find
the 9 values (A1,B1,C1,A2,B2,C2....C3) which are solutions of a 12
equations system of the form :
> x1-(A1/(A1+B1+C1)) = 0
> y1-(B1/(A1+B1+C1))= 0
> z1-(C1/(A1+B1+C1)) = 0
> 3 same equations with subscript 2
> 3 same
2007 Feb 16
0
re : array searches
Hi,
I am not sure to get the issue, but assuming your data are arranged as
in your example with dates in column x$V1 and signals as x$V2 ,
I think that you could use "rle" in the following way :
test<-rle(x$V2)
testmat<-matrix(NA,length(test$values),2)
testmat[,1]<-x[c(1,cumsum(test$length)[1:(length(test$values)-1)]+1),1]
testmat[,2]<-test$values
And you'll get your