search for: 74264

Displaying 11 results from an estimated 11 matches for "74264".

Did you mean: 4264
2018 Feb 18
2
Duplicate column names created by base::merge() when by.x has the same name as a column in y
...gt;>> >> >>>>> >> >>>> >> >>>> >> >> Index: src/library/base/R/merge.R >> >>> =================================================================== >> >>> --- src/library/base/R/merge.R (revision 74264) >> >>> +++ src/library/base/R/merge.R (working copy) >> >>> @@ -157,6 +157,15 @@ >> >>> } >> >>> if(has.common.nms) names(y) <- nm.y >> >>> + ## If by.x %in% names(y) then duplicate column n...
2018 Feb 20
3
Duplicate column names created by base::merge() when by.x has the same name as a column in y
...> >>>> > > >> >>>> > > >> >> Index: src/library/base/R/merge.R > > >> >>> ============================================================ > ======= > > >> >>> --- src/library/base/R/merge.R (revision 74264) > > >> >>> +++ src/library/base/R/merge.R (working copy) > > >> >>> @@ -157,6 +157,15 @@ > > >> >>> } > > >> >>> if(has.common.nms) names(y) <- nm.y > > >> >>> +...
2018 Feb 17
2
Duplicate column names created by base::merge() when by.x has the same name as a column in y
...oject.org mailing list > >> > https://stat.ethz.ch/mailman/listinfo/r-devel > >> > > >> > > > > > Index: src/library/base/R/merge.R > =================================================================== > --- src/library/base/R/merge.R (revision 74264) > +++ src/library/base/R/merge.R (working copy) > @@ -157,6 +157,15 @@ > } > > if(has.common.nms) names(y) <- nm.y > + ## If by.x %in% names(y) then duplicate column names still arise, > + ## apply suffixes to these > + dupe.keyx...
2018 Feb 20
0
Duplicate column names created by base::merge() when by.x has the same name as a column in y
...>>>> > >> >>>> > >> >>>> > >> >> Index: src/library/base/R/merge.R > >> >>> =================================================================== > >> >>> --- src/library/base/R/merge.R (revision 74264) > >> >>> +++ src/library/base/R/merge.R (working copy) > >> >>> @@ -157,6 +157,15 @@ > >> >>> } > >> >>> if(has.common.nms) names(y) <- nm.y > >> >>> + ## If by.x %in% names(y...
2018 Feb 22
2
Duplicate column names created by base::merge() when by.x has the same name as a column in y
...;> >> > > >> >> Index: src/library/base/R/merge.R >> > > >> >>> ============================================================ >> > ======= >> > > >> >>> --- src/library/base/R/merge.R (revision 74264) >> > > >> >>> +++ src/library/base/R/merge.R (working copy) >> > > >> >>> @@ -157,6 +157,15 @@ >> > > >> >>> } >> > > >> >>> if(has.common.nms) names(y...
2018 Feb 18
2
Duplicate column names created by base::merge() when by.x has the same name as a column in y
...istinfo/r-devel >>>>>> >>>>>> >>>>> >>>> >>>> >> Index: src/library/base/R/merge.R >>> =================================================================== >>> --- src/library/base/R/merge.R (revision 74264) >>> +++ src/library/base/R/merge.R (working copy) >>> @@ -157,6 +157,15 @@ >>> } >>> if(has.common.nms) names(y) <- nm.y >>> + ## If by.x %in% names(y) then duplicate column names still >>> arise, >>> +...
2018 Feb 21
0
Duplicate column names created by base::merge() when by.x has the same name as a column in y
...; > > >> >>>> > > > >> >> Index: src/library/base/R/merge.R > > > >> >>> ============================================================ > > ======= > > > >> >>> --- src/library/base/R/merge.R (revision 74264) > > > >> >>> +++ src/library/base/R/merge.R (working copy) > > > >> >>> @@ -157,6 +157,15 @@ > > > >> >>> } > > > >> >>> if(has.common.nms) names(y) <- nm.y > > > >...
2018 Feb 23
0
Duplicate column names created by base::merge() when by.x has the same name as a column in y
...t; > >> >> Index: src/library/base/R/merge.R > >> > > >> >>> ============================== > ============================== > >> > ======= > >> > > >> >>> --- src/library/base/R/merge.R (revision 74264) > >> > > >> >>> +++ src/library/base/R/merge.R (working copy) > >> > > >> >>> @@ -157,6 +157,15 @@ > >> > > >> >>> } > >> > > >> >>> if(has...
2018 Feb 18
0
Duplicate column names created by base::merge() when by.x has the same name as a column in y
...;>>> https://stat.ethz.ch/mailman/listinfo/r-devel >>>>> >>>> >>> >>> > >> Index: src/library/base/R/merge.R >> =================================================================== >> --- src/library/base/R/merge.R (revision 74264) >> +++ src/library/base/R/merge.R (working copy) >> @@ -157,6 +157,15 @@ >> } >> >> if(has.common.nms) names(y) <- nm.y >> + ## If by.x %in% names(y) then duplicate column names still arise, >> + ## apply suffixes to...
2018 Feb 18
0
Duplicate column names created by base::merge() when by.x has the same name as a column in y
...;> > >>>>>> > >>>>> > >>>> > >>>> > >> Index: src/library/base/R/merge.R > >>> =================================================================== > >>> --- src/library/base/R/merge.R (revision 74264) > >>> +++ src/library/base/R/merge.R (working copy) > >>> @@ -157,6 +157,15 @@ > >>> } > >>> if(has.common.nms) names(y) <- nm.y > >>> + ## If by.x %in% names(y) then duplicate column names still > >...
2018 Feb 17
2
Duplicate column names created by base::merge() when by.x has the same name as a column in y
Hi Frederick, I would expect that any duplicate names in the resulting data.frame would have the suffixes appended to them, regardless of whether or not they are used as the join key. So in my example I would expect "names.x" and "names.y" to indicate their source data.frame. While careful reading of the documentation reveals this is not the case, I would argue the intent of