On 02/17/2015 02:10 PM, Erich Neuwirth wrote:> AFAIK dplyr imports magrtittr. > So dplyr ses %>% from migrittr, it does not have its own version.But it has its own man page so who knows? H.> > >> On Feb 17, 2015, at 22:19, Ben Bolker <bbolker at gmail.com> wrote: >> >> David Barron <dnbarron <at> gmail.com> writes: >> >>> >>> It's in the magrittr package. >>> >>> David >> >> It also exists in dplyr. >> >> (I would guess that it's imported/exported from magrittr.) >> Although I think the documentation in magrittr is a little better. >> >> ______________________________________________ >> R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see >> 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, self-contained, reproducible code. > > > > ______________________________________________ > R-help at r-project.org mailing list -- To UNSUBSCRIBE and more, see > 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, self-contained, reproducible code. >-- Herv? Pag?s Program in Computational Biology Division of Public Health Sciences Fred Hutchinson Cancer Research Center 1100 Fairview Ave. N, M1-B514 P.O. Box 19024 Seattle, WA 98109-1024 E-mail: hpages at fredhutch.org Phone: (206) 667-5791 Fax: (206) 667-1319
On Tue, Feb 17, 2015 at 6:02 PM, Herv? Pag?s <hpages at fredhutch.org> wrote:> On 02/17/2015 02:10 PM, Erich Neuwirth wrote: >> >> AFAIK dplyr imports magrtittr. >> So dplyr ses %>% from migrittr, it does not have its own version. > > But it has its own man page so who knows?If you import and re-export a function from another package, you have to document it, even if it's already documented elsewhere. Hadley -- http://had.co.nz/
On 02/17/2015 08:03 PM, Hadley Wickham wrote:> On Tue, Feb 17, 2015 at 6:02 PM, Herv? Pag?s <hpages at fredhutch.org> wrote: >> On 02/17/2015 02:10 PM, Erich Neuwirth wrote: >>> >>> AFAIK dplyr imports magrtittr. >>> So dplyr ses %>% from migrittr, it does not have its own version. >> >> But it has its own man page so who knows? > > If you import and re-export a function from another package, you have > to document it, even if it's already documented elsewhere.Maybe I should have said: But it has its own man page that doesn't make any mention of the primary man page so who knows? H.> > Hadley >-- Herv? Pag?s Program in Computational Biology Division of Public Health Sciences Fred Hutchinson Cancer Research Center 1100 Fairview Ave. N, M1-B514 P.O. Box 19024 Seattle, WA 98109-1024 E-mail: hpages at fredhutch.org Phone: (206) 667-5791 Fax: (206) 667-1319
On 17/02/2015 11:03 PM, Hadley Wickham wrote:> On Tue, Feb 17, 2015 at 6:02 PM, Herv? Pag?s <hpages at fredhutch.org> wrote: >> On 02/17/2015 02:10 PM, Erich Neuwirth wrote: >>> >>> AFAIK dplyr imports magrtittr. >>> So dplyr ses %>% from migrittr, it does not have its own version. >> >> But it has its own man page so who knows? > > If you import and re-export a function from another package, you have > to document it, even if it's already documented elsewhere. > > Hadley >The promptImport() function generates boilerplate documentation that links to the original docs. (I notice it doesn't escape % properly, so the generated page for "%>%" wouldn't work; sigh.) Duncan Murdoch