R is good for ecology now that Microsoft own it -_-'
R in Ecology
11–17 of 17 posts
Re: R in Ecology
#12> library(dplyr) # gives us the gift of pipes “%>%” Actually, it was magrittr[0]. dplyr popularised their use. [0] https://cran.r-project.org/web/packages/magrittr/index.html
Re: R in Ecology
#13R is good for ecology now that Microsoft own it -_-'
What do you mean Microsoft owns R? It's an open source project under the GNU license.
http://blog.revolutionanalytics.com/2016/01/microsoft-r-open...
Edit: Just saying why the GP claimed Microsoft "owns" R, which they clearly don't.
Re: R in Ecology
#14Earlier quoted context omitted.
What do you mean Microsoft owns R? It's an open source project under the GNU license.
Microsoft acquired Revolution Analytics http://blog.revolutionanalytics.com/2016/01/microsoft-r-open... Edit: Just saying why the GP claimed Microsoft "owns" R, which they clearly don't.
Re: R in Ecology
#15> library(dplyr) # gives us the gift of pipes “%>%” Actually, it was magrittr[0]. dplyr popularised their use. [0] https://cran.r-project.org/web/packages/magrittr/index.html
It's a bit more complicated than that - dplyr and magrittr invented pipes independently at about the same time. I preferred magrittr's implementation, so switched to that. dplyr continues to import and re-export %>% so that you don't need to explicitly load magrittr.
Re: R in Ecology
#16> library(dplyr) # gives us the gift of pipes “%>%” Actually, it was magrittr[0]. dplyr popularised their use. [0] https://cran.r-project.org/web/packages/magrittr/index.html
It's a bit more complicated than that - dplyr and magrittr invented pipes independently at about the same time. I preferred magrittr's implementation, so switched to that. dplyr continues to import and re-export %>% so that you don't need to explicitly load magrittr.
Re: R in Ecology
#17Otherwise, I don't really understand the hype with that %>% thing and did not find nothing about this structure in a quick google search. I would really appreciate if someone can enlight this fool. Thanks.