[R] Joining tables with different order and matched values

2017-05-15 Thread Jim Lemon
Hi Abo, This is essentially the same as your other problem. Notice that this solution will only work if the values in dt1 and dt2 are character, not factor and that I have replaced the space in "Drug name" with an underscore. R will automatically substitute a period when such a name is read in. dt

Re: [R] Joining tables with different order and matched values

2017-05-14 Thread jim holtman
Here is a solution to the "shared values" question > library(stringr) > input <- read.table(text = "A B + + 1,2,5 3,8,7 + + 2,4,6 7,6,3 ", + header = TRUE, + as.is = TRUE + ) > > input$'shared values' <- apply(input, 1, function(x){ + toString(intersect(str

Re: [R] Joining tables with different order and matched values

2017-05-09 Thread Boris Steipe
a table like df1 but in the order of the 1st column > of my df2. > > This would be like this > >> joined tables > Drug name indications > > > Simvastatin hyperlipidemia > > losartan hypertension > > Ibuprofen pain >

Re: [R] Joining tables with different order and matched values

2017-05-09 Thread abo dalash
ext to it under "indications" column. From: Ulrik Stervbo Sent: 09 May 2017 06:31 PM To: abo dalash Subject: Re: [R] Joining tables with different order and matched values Hi Abo, Please keep the list in cc - 1) the comments are accessible to every

Re: [R] Joining tables with different order and matched values

2017-05-09 Thread Ulrik Stervbo
om: Ulrik Stervbo > Date: 09/05/2017 7:42 a.m. (GMT+00:00) > To: abo dalash , "r-help@R-project.org" < > r-help@r-project.org> > Subject: Re: [R] Joining tables with different order and matched values > > Hi Abo, > > ?merge > > or the join functions f

Re: [R] Joining tables with different order and matched values

2017-05-08 Thread Ulrik Stervbo
Hi Abo, ?merge or the join functions from dplyr. HTH Ulrik On Tue, 9 May 2017 at 06:44 abo dalash wrote: > Hi All .., > > > I have 2 tables and I'm trying to have some information from the 1st table > to appear in the second table with different order. > > > For Example, let's say this is my

Re: [R] joining tables

2011-10-04 Thread R. Michael Weylandt
Perhaps rbind? Michael On Tue, Oct 4, 2011 at 3:48 PM, Jose Bustos Melo wrote: > Hello everyone, > > I know this is very basic question for you people. I'm working with mani > diferent tables, but everyone has the same variables. (V1, V2, V3). The only > think that I need to do is to put toget

[R] joining tables

2011-10-04 Thread Jose Bustos Melo
Hello everyone, I know this is very basic question for you people. I'm working with mani diferent tables, but everyone has the same variables. (V1, V2, V3). The only think that I need to do is to put together this tables. In other words, creating just one big table with all the cases showed in