Re: [R] [External] challenging data merging/joining problem

2020-07-06 Thread Rasmus Liland
On 2020-07-06 12:03 +0300, Eric Berger wrote: > On Mon, Jul 6, 2020 at 2:07 AM Richard M. Heiberger wrote: > > On Sun, Jul 5, 2020 at 2:51 PM Christopher W. Ryan > > wrote: > > > > > > I've been conducting relatively simple > > > COVID-19 surveillance for our > > > jurisdiction. > > > > Have

Re: [R] [External] challenging data merging/joining problem

2020-07-06 Thread Eric Berger
Hi Christopher, This seems pretty standard and straightforward, unless I am missing something. You can do the "full join" without changing variable names. Here's a small code example with two tibbles, a and b, where the column 'x' in a corresponds to the column 'u' in b. a <- tibble(x=1:15,y=21:35

Re: [R] [External] challenging data merging/joining problem

2020-07-05 Thread Richard M. Heiberger
Have you talked directly to the designers of the new database? One would hope that they had a clear migration path in mind. Perhaps they just didn't document it to your satisfaction. Rich On Sun, Jul 5, 2020 at 2:51 PM Christopher W. Ryan wrote: > > I've been conducting relatively simple COVID-1