That is exactly what I was looking for. Thanks, Wade
On Wed, Sep 14, 2011 at 5:47 AM, Petr PIKAL wrote:
> >
> > Hi all,
> >
> > I have a dataframe that includes data on individuals that are
> distributed
> > across multiple rows. I have aggregated the data using ddply, but I
> have
> > columns
Hi all,
I have a dataframe that includes data on individuals that are distributed
across multiple rows. I have aggregated the data using ddply, but I have
columns in the original data frame that are factors ( such as sites "A",
"B", and "C") that I would like to include in the new data frame. I
:19 PM, David Winsemius wrote:
>
> On Dec 8, 2010, at 3:10 PM, Wade Wall wrote:
>
> Hi all,
>>
>> How can one evaluate NAs in a numeric dataframe column? For example, I
>> have
>> a dataframe (demo) with a column of numbers and several NAs. If I write
>>
Hi all,
How can one evaluate NAs in a numeric dataframe column? For example, I have
a dataframe (demo) with a column of numbers and several NAs. If I write
demo.df >= 10, numerals will return TRUE or FALSE, but if the value is
"NA", "NA" is returned. But if I write demo.df == "NA", it returns as
n to have the same data type (if
> it can). In this case, the data type is numeric. Had it been a
> character coming in, because it can't coerce a character to a numeric,
> it would have made the entire vector a vector of characters:
>
> > test3[2,1] <- 'b'
>
Hi all,
I have a dataframe (df1) that I am trying to select values from to a second
dataframe that at the current time is only for the selected items from df1
(df2). The values that I am trying to save from df1 are factors with
alphanumeric names
df1 looks like this:
'data.frame': 3014 obs. o
Hi all,
I am wondering if there is a way to plot symbols onto the leaves of a
dendrogram. Thanks for any help.
Wade
__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project
t 1:53 PM, Wade Wall wrote:
>
> > Hi all,
> >
> > Is there a function to open a script file from the command line? I have
> > several students who are Mac users and when they open up a script file it
> > does not send commands to the console, and unfortunately I don
Hi all,
Is there a function to open a script file from the command line? I have
several students who are Mac users and when they open up a script file it
does not send commands to the console, and unfortunately I don't know how to
solve this problem since I am not a Mac user.
I have looked over
Hi all,
I would like to color code the leaves on a dendrogram to reflect group
membership. Does anyone know of a function to do this besides code
listed at http://addictedtor.free.fr/graphiques/RGraphGallery.php?graph=79?
I haven't seen anything recently to accomplish this. I basically
just wan
Hi all,
I have been looking for a method to rotate a dendrogram, but haven't
found any references to a way to do this. I basically want to plot
two dendrograms and rotate them so that I can compare the leaves to
each other for heuristic purposes within R. Any help would be
appreciated.
Wade
__
Hi all,
I have two columns of data, the first consists of parameter estimates and
the second probability estimates. I would like to extract the value from
the first column based on the max value of column two, but not sure how to
do this other than by extracting the value and then manually findin
Hi all,
I have a data set that I am analyzing and I am trying to do a multiple
comparison of means under a glm model. The factors are 2 light
treatments and 3 temperature treatments in a complete block design
analyzed using a glm.
My question is how do I do a multiple comparison of means using t
)
> dat.avg.temp<-data.frame(cbind(temp,light,dat.avg.temp))
> dat.plot<-qplot(light,avg, fill=factor(temp),data=dat.avg.temp,
> geom="bar", position="dodge") +
> scale_fill_discrete("Temp",labels=c('Low','Medium','High'
symbols. I would like to write one line, rather than dividing up
the 35 points into categories first, but I can't see to find a way.
Basically, I am trying to do this . . . .
points(ordination$points, pch=popsymbols[,2]), where popsymbols[,2] is
a column of symbol values.
Thanks for any help,
Hi all,
I have a binary matrix with NAs included. Each row and column
includes at least one NA, so I don't want to omit them. Is there a
way to sum across rows and columns, ignoring the NAs but not deleting
the row or column? If not, I suppose I can write a loop function, but
I have learned tha
Hi all,
I have been trying to figure out how to place a legend beside a plot,
rather than within the space to no avail. I am assuming that I need
to resize the plot relative to the window.
If anyone has any guidance on how to do this, I would greatly appreciate it.
Wade
___
be appreciated because I have looked around for
a solution to no avail.
Thanks
Wade Wall
__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and
Hi all,
I am trying to analyze an experiment I ran, but not sure how to code in R.
I have germinated seeds in petri dishes at 3 different temperatures
(call it low, med, and high) and 2 different light levels (light and
dark). For each seed I have recorded time to germination (not
counting those
Hi all,
Is there a function to extract row names from a data frame based on
row names from another data frame? I can write a loop function to do
this, but this may be inefficient in terms of processing.
thanks for any information,
Wade
__
R-help@r-pr
Hi all,
I am trying to find a way to rename R objects with names pulled from a
vector of names. For example, I have a data frame, my.data.frame, and
a list of names, my.names. My.names is simply the column names of
my.data.frame.
I want save the histogram with the column name as the name of the
Hi Gabor,
Thanks for the code, it's what I was looking for. The route I was
thinking about was to use, based on your code, the names from
my.data.frames as a pointer to the actually dataframes.
I was envisioning something like
a <- data.frame(1:10)
b <- data.frame(10:1)
c <- data.frame(letters[
Hi all,
I have roughly fifty dataframes and a dataframe with the names of the fifty
dataframes. I want to perform the same set of manipulations on all fifty
dataframes, but can't find a way to batch process from a list with the
dataframe names using a loop. Is there a way to read the file names f
ows, there is some simple built-in GUI functionality.
> ?winMenuAdd, ?select.list and the links therein will get you started there.
>
> Cheers,
> Bert Gunter
>
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> On
> Behalf Of Wade Wall
> Sent:
help.
Wade Wall
[[alternative HTML version deleted]]
__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal,
Hi all,
This is both a general and r specific question. I am analyzing some
morphological data and have performed a MANOVA on the 5 groups with 5
measured morphological traits. The results provide me with some pairwise
comparisons, but I would like to run a multiple comparison test on the
result
text() function
and it works the way I want it to work.
On Wed, Sep 10, 2008 at 1:23 PM, Wade Wall <[EMAIL PROTECTED]> wrote:
> Hi all,
>
> I have run a pca and want to plot the samples multivariate space using the
> sample numbers. In addition, I would like to color code the sample
Hi all,
I have run a pca and want to plot the samples multivariate space using the
sample numbers. In addition, I would like to color code the sample numbers
by group, but can't find a way to color-code the sample numbers by group.
So, I have to do it in two separate steps:
plot(bulbil.pca, col
Hi all,
I am trying to look for a way to eliminate columns that sum to zero. Any
help would be appreciated.
Wade
[[alternative HTML version deleted]]
__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do r
Hi all,
I am trying to convert geometric means in a matrix to cover classes. My
values are as such:
perc<-c(0,0.025136418, 0.316227766, 1.414213562,3.16227766, 7.071067812,
15.8113883, 35.35533906, 61.23724357, 84.40971508, 97.46794345)
cover<-c(0,1,2,3,4,5,6,7,8,9,10)
This is what I am tryin
I first installed through the package manager, but was unable to start R
without opening a script file. So I installed from the tarball, but am
still unable to open R using any commands; ESS loads into a buffer; but I
can't use M-x-R to open R. the only way I can open R is to open a script
file
Hi all,
I don't know if this is the proper place to ask this, but I am trying to
configure emacs/ess on Ubuntu 8.04 to run the way described for ESS and
Xemacs in Windows (John Fox's guide). I installed ess as directed at
http://ess.r-project.org/Manual/ . Under Windows I could use Emacs/ess fin
ative
binomial distribution models, so I will read up on it before I try to use
it. RTFM, right?
I will read about using betabinomial for overdispersed data.
Thanks for your help,
Wade
On Thu, Apr 3, 2008 at 8:30 AM, Michael Dewey <[EMAIL PROTECTED]>
wrote:
> At 12:54 03/04/2008, W
cript too
long. I have used traceback() and it seems to be in the glm.fitter
function, but as I say I am at the limit of my abilities here.
Wade
On Thu, Apr 3, 2008 at 7:23 AM, Michael Dewey <[EMAIL PROTECTED]>
wrote:
> At 17:03 02/04/2008, Wade Wall wrote:
>
> > Hi all,
&g
e
On Wed, Apr 2, 2008 at 12:31 PM, Gavin Simpson <[EMAIL PROTECTED]>
wrote:
> On Wed, 2008-04-02 at 12:03 -0400, Wade Wall wrote:
> > Hi all,
> >
> > I have count data (number of flowering individuals plus total number of
> > individuals) across 24 sites
ed.
I know that this level of residual deviance is unacceptable, but not sure is
transformations are in order.
Needless to say that I am at the outer limits of my statistical knowledge.
Thanks for any help,
Wade Wall
[[alternative HTML versi
find
much in the way of a text editor in sync with R. Any experiences,
recommendations would be appreciated.
Wade Wall
[[alternative HTML version deleted]]
__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEA
elementary
question, but I can't find the solution anywhere.
Thanks
Wade Wall
[[alternative HTML version deleted]]
__
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://
Hi all,
I am working with the package popbio (demographic work) at the moment and
there is an included dataset, whale, that includes to matrices of equal
dimensions. One represents transition values and one represents recruitment
of new individuals (whale$T and whale$F respectively). I have some
39 matches
Mail list logo