t; Department of Anthropology
> Texas A&M University
> College Station, TX 77840-4352
>
>
>
> From: André Luis Neves [mailto:andrl...@ualberta.ca]
> Sent: Friday, February 24, 2017 10:14 AM
> To: David L Carlson
> Cc: Jim Lemon ; r-help mailing list <
> r-help@r-proj
---
David L Carlson
Department of Anthropology
Texas A&M University
College Station, TX 77840-4352
From: André Luis Neves [mailto:andrl...@ualberta.ca]
Sent: Friday, February 24, 2017 10:14 AM
To: David L Carlson
Cc: Jim Lemon ; r-help mailing list
Subject: Re: [R] Help
gt; # c 1 1 0
> # d 2 0 0
> # e 3 0 0
> # f 0 4 5
> # o 0 0 4
> # q 0 0 10
>
>
> -
> David L Carlson
> Department of Anthropology
> Texas A&M University
> College Station, TX 778
---
From: R-help [mailto:r-help-boun...@r-project.org] On Behalf Of Jim Lemon
Sent: Thursday, February 23, 2017 6:00 PM
To: André Luis Neves ; r-help mailing list
Subject: Re: [R] Help with data management
Hi Andre,
As far as I am aware, merges can only be accomplished between two data
frames, so I
Hi Andre,
As far as I am aware, merges can only be accomplished between two data
frames, so I think you would have to do it one by one. It is probably
possible to program this to operate on your list of data frames, but I
suspect that it would take as much time as a bit of copying and
pasting. If y
Hi Andre,
This might do it:
A<-data.frame(c("c", "d", "e"),4.4:6.8,c(1,2,3))
colnames(A) <- c ("Family", "NormalizedCount", "Hits")
B<-data.frame(c("c", "f", "a"),c(3.2,6.4, 4.4), c(1,4,3))
colnames(B) <- c ("Family", "NormalizedCount", "Hits")
C<-data.frame(c("q", "o", "f"),c(7.2,9.4, 41.4), c(10
6 matches
Mail list logo