Skip to content

Search Archives

Search tips
from:Name Search by author name, e.g. from:Duncan Murdoch "exact phrase" Match an exact phrase word1 word2 Match messages containing both words Date range Use the date pickers to filter results to a time period

Use the list dropdown to narrow results to a specific mailing list. Combine from: with other terms to filter by author and content.

32 results for “from:Evgenia”

Results with name of dataset
Evgenia · Aug 10, 2010 · r-help

Yes, this is exactly want I want. Thanks Michael -- View this message in context: http://r.789695.n4.nabble.com/Results-with-name-of-dataset-tp2318328p2319484.html Sent from the R help mailing list archive at Nabble.com.

Save a plot with a name given as an argument in a function
Evgenia · Feb 9, 2015 · r-help

Thanks alot -- View this message in context: http://r.789695.n4.nabble.com/Save-a-plot-with-a-name-given-as-an-argument-in-a-function-tp4702965p4702969.html Sent from the R help mailing list archive at Nabble.com.

Function try and Results of a program
Evgenia · Sep 5, 2010 · r-help

David, your example clarify me the use of sink. I really appreciate your help Evgenia -- View this message in context: http://r.789695.n4.nabble.com/Function-try-and-Results-of-a-program-tp2526621p2527227.html Sent from the R help...

Summing list with NA elements
Evgenia · May 4, 2012 · r-help

I agree with you. I used this "trick" to take the desired results but I posted wondering If there was any other solution. Thanks Evgenia -- View this message in context: http://r.789695.n4.nabble.com/Summing-list-with-NA...

library(qpcR) cbind.na
Evgenia · Nov 10, 2011 · r-help

Yes, I dit it. I got the same error message > qpcR:::cbind.na(1, 1:7) Error in get(name, envir = asNamespace(pkg), inherits = FALSE) : object 'cbind.na' not found -- View this message in context: http://r.789695.n4.nabble...

Function try and Results of a program
Evgenia · Sep 4, 2010 · r-help

David, your suggestion about try works perfect for me. I still have a problem with sink. Could you explain me better your suggestion? Thanks alot Evgenia -- View this message in context: http://r.789695.n4.nabble.com/Function-try-and...

library(qpcR) cbind.na
Evgenia · Nov 10, 2011 · r-help

I want to use function cbind.na at library(qpcR) I install package qpcR and I can use functions such m1 <- pcrfit(reps, 1, 2, l5) > AICc(m1) [1] -102.5843 but when i try cbind.na(1, 1:7...

Mixture of Distributions
Evgenia · Feb 21, 2008 · r-help

Dear R users, I would like to sample from a mixture distribution p1*f1+p2*f2+p3*f3 with f1,f2,f3 three different forms of distributions. I know that in the case of two distributions I have to sample...

"cclust" Package
Evgenia Dimitriadou · Jun 22, 1998 · r-announce

There is a new version of the 'CCLUST' package ,where i removed the extra command for the kmeans algorithm in the .R programm and also the comments about it in the .Rd help page. Now in the cclust library the...

Save a plot with a name given as an argument in a function
Evgenia · Feb 9, 2015 · r-help

test<-function(data, TitleGraph){ pdf("TitleGraph.pdf",width=7,height=5) plot(data) dev.off() } test(cars <- c(1, 3, 6, 4, 9),TitleGraph="etc") My problem is that I want graph pdf being saved as etc and not as...

R-beta: "cclust" Package
Evgenia Dimitriadou · Jun 22, 1998 · r-help

There is a new version of the 'CCLUST' package ,where i removed the extra command for the kmeans algorithm in the .R programm and also the comments about it in the .Rd help page. Now in the cclust library the...

linear mixed models (PR#188)
Evgenia Dimitriadou · May 10, 1999 · r-devel

in lmList ,lmList.formula and lmList.groupedData functions in help pages there is an argument called "groups" that doesn't exist in the code of the functions. <<insert bug report here>> --please do not edit the information below-- Version: platform...

inverse lexicographical ordering
Evgenia · Feb 20, 2010 · r-help

Thanks for your help. Finally I found the solution to this problem for any matrix without having to know its number of columns I write it down in case someone else needed it. #Creation of b matrix ncol<-3 b...

New Package
Evgenia Dimitriadou · Jun 16, 1998 · r-announce

I have put a new package called "cclust", that is dealing with Convex Clustering Methods. More anallyticaly, it is performing the normal Kmeans clustering, the On-line Update clustering(Hard Competitive Learning) and the Neural Gas (Soft Competitive) clustering method...

R-beta: New Package
Evgenia Dimitriadou · Jun 16, 1998 · r-help

I have put a new package called "cclust", that is dealing with Convex Clustering Methods. More anallyticaly, it is performing the normal Kmeans clustering, the On-line Update clustering(Hard Competitive Learning) and the Neural Gas (Soft Competitive) clustering method...

Results with name of dataset
Evgenia · Aug 9, 2010 · r-help

I generate and save a dataset For example exampledata<-runif(10) library("R.utils"); saveObject(exampledata, file="exampledata_9810.RData"); exampledata_9810<- loadObject("exampledata_9810.RData"); I use ex function to make alot of calculations using sink to export results...

"cclust" package
Evgenia Dimitriadou · Mar 30, 1999 · r-announce

Hallo all, The package "cclust" applying convex clustering methods contains now a new function called "clustindex" calculating the values of several clustering indexes. The values of the indexes can be independently used in order to determine the number of clusters...

Select maximum subset
Evgenia · Dec 23, 2012 · r-help

Suppose i have matrix z id<-c(1,2,3,4,5) a <- c(4, 3, 2, NA, 1) b <- c(3, NA, 2, 7, 1) c <-c(3, NA, NA, 7, NA) z<- cbind(id,a, b,c) id...

Cluster validation and FOM
Evgenia Dimitriadou · Mar 7, 2002 · r-help

Michael Dondrup wrote: > Dear r-help, > > I wonder if there is an implementation in R of the so called Figure of > Merit as in > K. Y. Yeung et al. Validating clustering for gene expression data. ISMB > 2001. > (I did not...

inverse lexicographical ordering
Evgenia · Feb 19, 2010 · r-help

Dear users, I have a matrix b as [,1] [,2] [,3] [,4] [1,] 0 0 0 0 [2,] 0 0 1 1 [3,] 0 1 0 1 [4,] 0 1 1 2 [5,] 1 0 0 1 [6,] 1 0...

Can't find what you're looking for? Try searching with Google .