Displaying 20 results from an estimated 425 matches for "lianoglou".
2009 Jul 08
1
ksvm question -- help! line search failed...
I got the data working, but now I got another problem with KSVM:
line search fails -2.793708 -0.5831701 1.870406e-05 -5.728611e-06
-5.059796e-08 -3.761822e-08 -7.308871e-13Error in
prob.model(object)[[p]]$A :
$ operator is invalid for atomic vectors
On Tue, Jul 7, 2009 at 6:45 PM, Steve
Lianoglou<mailinglist.honeypot at gmail.com> wrote:
> Hi,
>
> On Jul 7, 2009, at 6:44 PM, Michael wrote:
>
>> What's wrong? Very sad about this...
>>
>> model <- ksvm(x=mytraindata[, -1], y=factor(mytraindata[, 1]),
>> prob.model=T)
>> Error in .local(x,...
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
2011 Sep 05
2
Need more information about VGLM
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/20110905/43ff838a/attachment.pl>
2009 Sep 11
3
Working with large matrix
Dear All,
I have large matrix (46000 x 11250). I would like to do the linear regression for each row. I wrote a simple function that has lm() and used apply(mat,1,func). The issue is that it takes ages to load the file and also to finish the lm. I am using LINUX 64 bit with 32G mem. Is there an elegant and fast way of completing this task?
Thanks in advance.
Kind regards,
Ezhil
2010 May 05
3
Symbolic eigenvalues and eigenvectors
Let's say I had a matrix like this:
library(Ryacas)
x<-Sym("x")
m<-matrix(c(cos (x), sin(x), -sin(x), cos(x)), ncol=2)
How can I use R to obtain the eigenvalues and eigenvectors?
Thanks,
John
[[alternative HTML version deleted]]
2009 Sep 15
2
Putting together a constantly evolving package
...th growing a package organically during your
analyses?
For this particular situation, I reckon I can create a separate
package for my dataset since its static (and I might do eventually
down the road, anyway), but I'm wondering if there are other
alternatives.
Thanks,
-steve
--
Steve Lianoglou
Graduate Student: Computational Systems Biology
| Memorial Sloan-Kettering Cancer Center
| Weill Medical College of Cornell University
Contact Info: http://cbio.mskcc.org/~lianos/contact
2011 Sep 08
2
As a package author, is there a way to specify that your package is architecture (x86_64) specific?
...ot;the normal build process" works just fine (except this whole
architecture thing)?
Even if it can't go on CRAN as 64-bit only, it would be great if I can
put up some easy install instructions for people to d/l my source
package externally and use it that way.
Thanks,
-steve
--
Steve Lianoglou
Graduate Student: Computational Systems Biology
?| Memorial Sloan-Kettering Cancer Center
?| Weill Medical College of Cornell University
Contact Info: http://cbio.mskcc.org/~lianos/contact
2009 Jul 02
2
Warning when trying to access a variable out of scope?
...ill keep accessing the "b.test" variable when I really want it to
work on the "b" var that I'm passing in to it.
Is there some setting or someway I can get R to warn me that "b.test"
is being accessed outside the scope of my function?
Thanks,
-steve
--
Steve Lianoglou
Graduate Student: Physiology, Biophysics and Systems Biology
Weill Medical College of Cornell University
Contact Info: http://cbio.mskcc.org/~lianos/contact
2011 Mar 24
2
Using C code in R
Hi,
I am new to R and I want to know how to use C code which contains two
functions one called inside another.I know that how to use C code in R if it
has only one function but dont know how to do it in above case. I want to
use the same in R .My C code is as follows.
//#include <R.h>
void sayHello();
void g();
void sayhello() {
Rprintf("Hello world %d\n",global);
}
void
2012 Oct 10
2
history() does not work?
Hi,
> history()
gives Error in savehistory(file) : no history available to save
although I can scroll throu history with C^uparrow an C^downarrow.
How can I make history() work and/or show the current history in a file,
so that I can choose from previous commands?
The web did not throw up anything useful.
TIA --Christian
--
Christian W. Hoffmann,
CH - 8915 Hausen am Albis,
2010 Jun 16
2
Parallel computing on Windows (foreach) (Sergey Goriatchev)
foreach (or virtually anything you might use for concurrent programming)
only really makes sense if the work the "clients" are doing is substantial
enough to overwhelm the communication overhead. And there are many ways to
accomplish the same task more or less efficiently (for example, doing blocks
of tasks in chunks rather than passing each one as an individual job).
But more to the
2009 Aug 18
2
value of nth percentile
Dear All,
I have to get the value of say 90th percentile of precipitation time series.. The series is of daily precipitation value of 96 years, I have to to get 90the percentile value of daily precipitation each year. If you know the R code or command for this please let me know.
I would appreciate your early response.
Thanking you,
Sincerely,
Ajay.
2009 Aug 12
5
Nominal variables in SVM?
Hi,
The answers to my previous question about nominal variables has lead me
to a more important question.
What is the "best practice" way to feed nominal variable to an SVM.
For example:
color = ("red, "blue", "green")
I could translate that into an index so I wind up with
color= (1,2,3)
But my concern is that the SVM will now think that the values are
2009 Aug 05
4
A question regarding R scoping
I have a question related to scoping. Suppose we have 2 functions:
f1 = function(i){i = 1}
f2 = function(n){
i = length(n)
f1(i)
}
In other words, I would like i=1 regardless of n. Is this possible without having f1 in the body of f2? Thanks in advance!
2010 Nov 03
1
Auto-killing processes spawned by foreach::doMC
...to get these R
processes and kill them automagically?
For what it's worth, I'm running on linux & os x, R-2.12 and the
latest versions of foreach/doMC/multicore (though, I feel like this
has been true since I've started using foreach/doMC way back when).
Thanks,
-steve
--
Steve Lianoglou
Graduate Student: Computational Systems Biology
?| Memorial Sloan-Kettering Cancer Center
?| Weill Medical College of Cornell University
Contact Info: http://cbio.mskcc.org/~lianos/contact
2009 Oct 14
1
Cacheing computationally expensive getter methods for S4 objects
...`x at area`` since the area computation has already been calc'd
and set for this object.
Is this possible? I'm guessing the R pass by value semantics is going
to make this one difficult ... is there some S4 reference I missed
that has this type of info from?
Thanks,
-steve
--
Steve Lianoglou
Graduate Student: Computational Systems Biology
| Memorial Sloan-Kettering Cancer Center
| Weill Medical College of Cornell University
Contact Info: http://cbio.mskcc.org/~lianos/contact
2008 Dec 01
1
[BioC] Rcurl 0.8-1 update for bioconductor 2.7
...n suggestions seen on that list.)
Thanks for your help.
-Roger
> -----Original Message-----
> From: bioconductor-bounces at stat.math.ethz.ch
> [mailto:bioconductor-bounces at stat.math.ethz.ch] On Behalf Of
> Patrick Aboyoun
> Sent: Thursday, May 29, 2008 8:49 PM
> To: Steve Lianoglou
> Cc: Yan Zhou; bioconductor at stat.math.ethz.ch
> Subject: Re: [BioC] Rcurl 0.8-1 update for bioconductor 2.7
>
> Steve and Yan,
> We just uploaded source, Windows binary, and MacOS X Tiger
> binary packages for RCurl 0.9-3 to the Bioconductor CRAN-like
> repository http:/...
2009 Oct 01
1
Looking for a better way to document my packages
...o.org/) from the
python world would be cool. Perhaps there's a way to make a plugin for
that to parse R-code. That's more work than I want to bit off right
now, but if there isn't something useful in R-land already, it might
be a fun side project.
Just curious,
-steve
--
Steve Lianoglou
Graduate Student: Computational Systems Biology
| Memorial Sloan-Kettering Cancer Center
| Weill Medical College of Cornell University
Contact Info: http://cbio.mskcc.org/~lianos/contact
2009 Dec 02
2
Arules - Association Rules
Hello everybody!
I'm trying some datamining, but i'm having some problems with arule
package, in the end of processing R "had to be closed". I already
tryied to reinstall the 2.10 version, change the computer and
realocated more virtual memory.
Does anyone had this problem to?
I had a hiphoteses that i have to prepare the data, somehow i don't
know.
Thanks for helping!!!
2009 Oct 21
3
Temperature Prediction Model
Greetings!
As part of my research project I am using R to study temperature data
collected by a network. Each node (observation point) records temperature of
its surroundings throughout the day and generates a dataset. Using the
recorded datasets for the past 7 days I need to build a prediction model for
each node that would enable it to check the observed data against the
predicted data. How can