Displaying 4 results from an estimated 4 matches for "antonink".
Did you mean:
antonin
2017 May 08
0
A few suggestions and perspectives from a PhD student
On Mon, May 8, 2017 at 8:08 AM, Antonin Klima <antonink at idi.ntnu.no> wrote:
> Thanks for the answers,
>
> I?m aware of the ?.? option, just wanted to give a very simple example.
>
> But the lapply ??' parameter use has eluded me and thanks for enlightening me.
>
> What do you mean by messing up the call stack. As far as I...
2017 May 08
3
A few suggestions and perspectives from a PhD student
...; Regarding currying note that with magrittr Ista's code could be written as:
>
> 1:5 %>% lapply(foo, y = 3)
>
> or at the expense of slightly more verbosity:
>
> 1:5 %>% Map(f = . %>% foo(y = 3))
>
>
> On Fri, May 5, 2017 at 1:00 PM, Antonin Klima <antonink at idi.ntnu.no> wrote:
>> Dear Sir or Madam,
>>
>> I am in 2nd year of my PhD in bioinformatics, after taking my Master?s in computer science, and have been using R heavily during my PhD. As such, I have put together a list of certain features in R that, in my opinion, would b...
2017 May 05
3
A few suggestions and perspectives from a PhD student
Dear Sir or Madam,
I am in 2nd year of my PhD in bioinformatics, after taking my Master?s in computer science, and have been using R heavily during my PhD. As such, I have put together a list of certain features in R that, in my opinion, would be beneficial to add, or could be improved. The first two are already implemented in packages, but given that it is implemented as user-defined operators,
2017 May 05
0
A few suggestions and perspectives from a PhD student
...agrittr)
1.5 %>% { . * 2 }
## [1] 3
Regarding currying note that with magrittr Ista's code could be written as:
1:5 %>% lapply(foo, y = 3)
or at the expense of slightly more verbosity:
1:5 %>% Map(f = . %>% foo(y = 3))
On Fri, May 5, 2017 at 1:00 PM, Antonin Klima <antonink at idi.ntnu.no> wrote:
> Dear Sir or Madam,
>
> I am in 2nd year of my PhD in bioinformatics, after taking my Master?s in computer science, and have been using R heavily during my PhD. As such, I have put together a list of certain features in R that, in my opinion, would be beneficial...