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.
There is the Rserve package which you can look at here: http://stats.math.uni-augsburg.de/Rserve/down.shtml JS ---
An embedded and charset-unspecified text was scrubbed... Name: not available Url: https://stat.ethz.ch/pipermail/r-help/attachments/20061109/4860f5de/attachment.pl
An embedded and charset-unspecified text was scrubbed... Name: not available Url: https://stat.ethz.ch/pipermail/r-help/attachments/20060926/f7627b0f/attachment.pl
An embedded and charset-unspecified text was scrubbed... Name: not available Url: https://stat.ethz.ch/pipermail/r-help/attachments/20060609/54076d91/attachment.pl
An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20090119/2dddaa21/attachment-0001.pl>
Hi Fabio Have you used the name "c" for something else? Try typing in "c" at the command line, you should see something like: > c function (..., recursive = FALSE) .Primitive("c") Regards John --- for example; > par(mfrow=c(2,2)) Error...
Hi All How can you associate names with a list when names have not been assigned? For example if you have a list like this: list2<-list(1,2,3) list2 [[1]] [1] 1 [[2]] [1] 2 [[3]] [1] 3...
Is this what you want: paste("Mystring", frequency, sep="") --- -----Original Message----- From: r-help-bounces at r-project.org [mailto:r-help-bounces at r-project.org] On Behalf Of Alfredo Alessandrini Sent: 31 July 2008 10:11 To: r...
tt<-read.table("C:/temp/test.csv", header=T, sep=",") # Try: tt$x tt$y # OR tt["x"] tt["y"] # OR tt[["x"]] tt[["y"]] # OR tt[1] tt[2] tt[[1]] tt[[2]] # Is this what you want? >I...
Perhaps here? http://www.bioconductor.org/packages/bioc/1.6/src/contrib/html/plgem.htm l -----Original Message----- From: r-help-bounces at stat.math.ethz.ch [mailto:r-help-bounces at stat.math.ethz.ch] On Behalf Of Amir...
Hi Are you sure this is an R problem? The "Choose" dialog can be very slow if you have networked directories that cannot be connected to. Windows tries to connect repeatedly and each time waits for a timeout. Suggest you...
Hi Jenny I have sent the file separately. Of course what I meant was if (!is.na(test)) { .... Just testing you - I never make mistikes. J Hi John, I just realised that the file name I gave on the original...
Hi I think a for loop would be more what you want. Something along the lines of: V<-list(a=c(1,2,3), b=c(2,3,4)) # list of 2 vectors for ( i in 1:2 ) { # 2 vectors...
Hello >Trying to run R in a non-existent locale (or at least in a charset iconv() does not understand). >However, your example (with suitably modified paths) does work for me in apparently the same locale, so > I cannot debug...
Hello R people I have a column of numeric values that are grouped in blocks of 25 and to be centered and scaled within each block. (That is subtract the mean and divide by the standard deviation.) Is there a...
Hello R I have some data from a number of gels showing the distance of bands in each gel and lane. My problem is to align these values by some method. It has been suggested to me (by a Matlab...
Hi Chib >>whether there is a way of handling the error you get in the download.file() function I think the function "try" will do this for you. That is, handle the error. Have a look at ?try. Regards John...
Hi Jacques Yes, that looks a whole lot better. That "ifelse" is exactly what I was searching for. Merci. J --- John Seers Institute of Food Research Norwich Research Park Colney Norwich NR4 7UA tel +44 (0)1603 251497 fax +44...
This is definitely the best way: c(lapply(1:length(x), function(i, x, y) c(x[i], y[i]), x, y), recursive=TRUE) JS --- -----Original Message----- From: r-help-bounces at r-project.org [mailto:r-help-bounces at...
Albert Is this what you want?: a[,order(colSums(a))] John S --- -----Original Message----- From: r-help-bounces at stat.math.ethz.ch [mailto:r-help-bounces at stat.math.ethz.ch] On Behalf Of Albert Vilella Sent: 21 June...
Can't find what you're looking for? Try searching with Google .