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.
> On Thu, 6 Jul 2000, Pete Hurd wrote: > > > Dear R friends, > > > > I was wondering if there were factorial and modulus functions out there > > that I've somehow overlooked? > > There's gamma and lgamma for factorials > > gamma(x+1) is x...
Simple. Minitab must be broken. Have you reported it to them? -----Original Message----- From: r-help-bounces at r-project.org [mailto:r-help-bounces at r-project.org] On Behalf Of SH.Chou Sent: Friday, 18 July 2008 5...
Why do you think there is one? kmeans is an agglomerative clustering algorithm, not a recursively dividing one. Since there is no clustering hierarchy, so there is no dendrogram. -----Original Message----- From: r-help-bounces at r-project.org [mailto...
An envorniment is a hash table. There are several packages that you might care to look at, e.g. filehasn -----Original Message----- From: r-help-bounces at r-project.org [mailto:r-help-bounces at r-project.org] On Behalf...
nls in the stats package. ?nls ________________________________________ From: r-help-bounces at r-project.org [r-help-bounces at r-project.org] On Behalf Of Erik Thulin [ethulin at gmail.com] Sent: 15 January 2011 16:16 To: r-help at...
Does anyone have, or has anyone ever considered making, a version of 'termplot' that allows the user to specify that all plots should have the same y-limits? This seems a natural thing to ask for, as the plots share...
This is more a deficiency than a bug. The axis() function does not seem to allow an axis to be placed internally on the plot (as allowed by the argument pos to the corresponding S function). The help information nevertheless...
Does anyone have, or has anyone ever considered making, a version of 'termplot' that allows the user to specify that all plots should have the same y-limits? This seems a natural thing to ask for, as the plots share...
This is a new one on me. Do you mean the Kronecker delta, or the Kronecker product? The Kronecker product is more likely. In which case try ?kronecker. It is available as an operator, %x%, as well. Bill Venables. ________________________________________ From...
newlist <- newlist[sapply(newlist, length) > 0] -----Original Message----- From: r-help-bounces at r-project.org [mailto:r-help-bounces at r-project.org] On Behalf Of song song Sent: Tuesday, 29 June 2010 2:12 PM To: r-help...
scale? This transforms the columns of a matrix to z-scores. That's one kind of standardisation. Bill Venables http://www.cmis.csiro.au/bill.venables/ -----Original Message----- From: r-help-bounces at r-project.org [mailto:r-help-bounces...
-----Original Message----- From: r-help-bounces at r-project.org [mailto:r-help-bounces at r-project.org] On Behalf Of minben Sent: Monday, 30 March 2009 12:28 PM To: r-help at r-project.org Subject: [R] A...
Peter, I thought this one was noted and fixed, but I could be wrong. R : Copyright 1999, The R Development Core Team Version 0.63.3 (March 6, 1999) .... [Previously saved workspace restored] > tabulate(1:10, 5) Process R:1...
sLengths <- with(dataFrame, nchar(as.character(SEQUENCE))) Bill Venables CSIRO Laboratories PO Box 120, Cleveland, 4163 AUSTRALIA Office Phone (email preferred): +61 7 3826 7251 Fax (if absolutely necessary): +61 7 3826 7304 Mobile: +61 4 8819 4402 Home Phone...
ginv() is slower than solve(). This is the price you pay for more generality. -----Original Message----- From: r-help-bounces at r-project.org [mailto:r-help-bounces at r-project.org] On Behalf Of song song Sent: Monday, 5...
... or in one step df <- transform(df, col1 = ifelse(col1 > 3, NA, col1)) -----Original Message----- From: r-help-bounces at r-project.org [mailto:r-help-bounces at r-project.org] On Behalf Of K. Elo Sent: Friday, 15 February...
Since X is a vector, then A <- sum(X, solve(V, X)) is probably slightly better here. -----Original Message----- From: r-help-bounces at r-project.org [mailto:r-help-bounces at r-project.org] On Behalf Of Dmitrij Kudriavcev...
I recently took "." off my PATH for security reasons and now find that R does not work in my home directory where the .Renviron file resides. The fix is simple. In the R shell startup section replace ". .Renviron" by ". ./.Renviron...
for the upper tail: > 1-pt(1.11, 9) [1] 0.1478873 -----Original Message----- From: r-help-bounces at stat.math.ethz.ch [mailto:r-help-bounces at stat.math.ethz.ch] On Behalf Of Nair, Murlidharan T Sent: Thursday...
You didn't try very hard. Try this, look at it and think about it: jj <- scale(sample(1:100, 10)) qqnorm(jj) abline(0, 1) Rather than abline, however, most people, however, would use qqline(jj) in which case...
Can't find what you're looking for? Try searching with Google .