search for: gmbecker

Displaying 20 results from an estimated 148 matches for "gmbecker".

Did you mean: becker
2015 May 26
4
MetaCran website v1.0.0-alpha
On Tue, May 26, 2015 at 1:46 PM, Gabriel Becker <gmbecker at ucdavis.edu> wrote: > That's true, but issues, checkouts, comments, credit, etc should all be > going to the original repo. You mean the links? They are, aren't they? [...] > >From the email Gabor just sent out, it sounds like he and I agree about > this stuff anyw...
2015 May 26
4
MetaCran website v1.0.0-alpha
On Tue, May 26, 2015 at 12:18 PM, Gabriel Becker <gmbecker at ucdavis.edu> wrote: > On Tue, May 26, 2015 at 9:25 AM, Yihui Xie <xie at yihui.name> wrote: > >> I cannot speak for other package authors, but for all my own packages, >> I have provided the BugReports field in DESCRIPTION that points to the >> Github issues page...
2017 Mar 30
2
Transferring ownership of R-managed buffer
On Wed, Mar 29, 2017 at 4:56 PM, Gabriel Becker <gmbecker at ucdavis.edu> wrote: > The concept of having a vector which is a "window" into another vector > without duplication ( which I suspect is at least related to your use-case, > though I could be wrong) is a special case of one of alt-representations I > have implemented th...
2016 Apr 19
4
S3 dispatch for S4 subclasses only works if variable "extends" is accessible from global environment
...ld force load the methods package? The above > example works after fixing the check to ensure that R_MethodsNamespace > is not R_GlobalEnv, but one could load a serialized S4 object and > expect S3 dispatch to work with Rscript. > > On Tue, Apr 19, 2016 at 6:51 AM, Gabriel Becker <gmbecker at ucdavis.edu> > wrote: > > See also .isMethodsDispatchOn, which is what trace uses to decide if the > > methods package needs to be loaded. > > > > ~G > > > > On Tue, Apr 19, 2016 at 5:34 AM, Michael Lawrence > > <lawrence.michael at gene.com>...
2017 Mar 17
2
Support for user defined unary functions
...herwise what would we do with multicall expressions?] We probably need to come up with a better name than 'non-standard evaluation' since there are lots of non-standard ways of doing things. Bill Dunlap TIBCO Software wdunlap tibco.com On Fri, Mar 17, 2017 at 12:14 PM, Gabriel Becker <gmbecker at ucdavis.edu> wrote: > William, > > Unbeknownst to me when I sent this, Jonathon Carrol started a specific > thread about unquoting and a proposal for supporting it at the language > level, which I think is a better place to discuss unquoting specifically. > That said, the ba...
2015 Jun 15
1
Add on argument in seq()
...= unpredictable positive integer. > > And I haven't found in ?seq() the particular behavior of this function > when length.out = 1. > > > > Thanks for your help ! > > > > Best, > > > > Gael. > > > > > > De : Gabriel Becker [mailto:gmbecker at ucdavis.edu] > > Envoy? : lundi 15 juin 2015 16:25 > > ? : Millot Gael > > Cc : r-devel > > Objet : Re: [Rd] Add on argument in seq() > > > > > > Millot, > > > > I think the problem with that is that what you propose isn't a sequence >...
2014 Mar 26
5
Conflicting definitions for function redefined as S4 generics
That might be worth thinking about generally, but it would still be nice to have the base generics pre-defined, so that people are not copy and pasting the definitions everywhere, hoping that they stay consistent. On Wed, Mar 26, 2014 at 6:13 AM, Gabriel Becker <gmbecker@ucdavis.edu>wrote: > Perhaps a patch to R such that generics don't clobber each-other's method > tables if the signatures agree? I haven't dug deeply, but simply merging > the method tables seems like it would be safe when there are no conflicts. > > That way this typ...
2015 May 26
2
MetaCran website v1.0.0-alpha
On Tue, May 26, 2015 at 2:10 PM, Gabriel Becker <gmbecker at ucdavis.edu> wrote: [...] > > Well, sort of. I mean if the package is being actively developed not on > github, forking your archive repo and developing a patch/etc against it > won't necessarily be particularly effective, as there is no way to have the > right starting po...
2017 Dec 14
4
cannot destroy connection (?) created by readLines in a tryCatch
On Thu, Dec 14, 2017 at 7:56 PM, Gabriel Becker <gmbecker at ucdavis.edu> wrote: > Gabor, > > You can grab the connection and destroy it via getConnection and then a > standard close call. Yeah, that's often a possible workaround, but since this connection was opened by readLines() internally, I don't necessarily know which one it...
2017 Mar 17
2
Support for user defined unary functions
...unquoting in R syntax and show a few examples where is is useful, intuitive, and fits in to R's functional design? In particular, what does it give us that the current tilde function does not? Bill Dunlap TIBCO Software wdunlap tibco.com On Fri, Mar 17, 2017 at 6:46 AM, Gabriel Becker <gmbecker at ucdavis.edu> wrote: > Jim, > > One more note about precedence. It prevents a solution like the one you > proposed from solving all of the problems you cited. By my reckoning, a > "What comes next is for NSE" unary operator needs an extremely low > precedence, becau...
2018 Feb 01
3
Best practices in developing package: From a single file
On Thu, Feb 1, 2018 at 5:24 AM, Lionel Henry <lionel at rstudio.com> wrote: > On 31 janv. 2018, at 09:08, Gabriel Becker <gmbecker at ucdavis.edu> wrote: > > > it *actively discourages* the bits it doesn't directly support. > > It may be discouraging to include Rd syntax in roxygen docs but only > because the LaTeX-like syntax of Rd is burdensome, not because of > roxygen. It is still handy to have...
2017 Mar 17
3
Support for user defined unary functions
...sary. >>> >>> [1]: https://github.com/hadley/rlang/blob/master/R/tidy-unquote.R#L17 >>> [2]: https://cran.r-project.org/package=ensurer >>> [3]: https://cran.r-project.org/package=types >>> >>> On Thu, Mar 16, 2017 at 1:04 PM, Gabriel Becker <gmbecker at ucdavis.edu> >>> wrote: >>> > Martin, >>> > >>> > Jim can speak directly to his motivations; I don't claim to be able to do >>> > so. That said, I suspect this is related to a conversation on twitter >>> about >>>...
2015 Apr 29
4
R CMD check and missing imports from base packages
On Wed, Apr 29, 2015 at 1:45 PM, Gabriel Becker <gmbecker at ucdavis.edu> wrote: > Gabor, > > To play devil's advocate a bit, why not just have the package formally > import the functions it wants to use (or the whole package if that is > easier)? > This is exactly my goal. And to facilitate this, R CMD check could remind you i...
2015 May 26
0
MetaCran website v1.0.0-alpha
----- Original Message ----- > From: "G?bor Cs?rdi" <csardi.gabor at gmail.com> > To: "Gabriel Becker" <gmbecker at ucdavis.edu> > Cc: "Simon Urbanek" <simon.urbanek at r-project.org>, "Rainer M Krug" <Rainer at krugs.de>, r-devel at r-project.org > Sent: Tuesday, May 26, 2015 10:55:02 AM > Subject: Re: [Rd] MetaCran website v1.0.0-alpha > > On Tue, May 26, 2...
2017 Mar 16
2
Support for user defined unary functions
...annot see why anybody would prefer > the ugliness of > > 1 + - %num% "5" > to > 1 + -num("5") > > (after setting num <- as.numeric ) > > Martin > > > > On Thu, Mar 16, 2017 at 12:01 PM, Gabriel Becker < > gmbecker at ucdavis.edu> wrote: > >> Jim, > >> > >> This seems cool. Thanks for proposing it. To be concrete, he > user-defined > >> unary operations would be of the same precedence (or just slightly > below?) > >> built-in unary ones...
2014 Jun 02
1
R CMD check for the R code from vignettes -- thread fraying?
...ch failures are causing misunderstandings. JN On 14-06-02 06:00 AM, r-devel-request at r-project.org wrote: > Message: 4 Date: Mon, 02 Jun 2014 14:06:28 +0900 From: Duncan Murdoch > <murdoch.duncan at gmail.com> To: Carl Boettiger <cboettig at gmail.com>, > Gabriel Becker <gmbecker at ucdavis.edu> Cc: Henrik Bengtsson > <hb at biostat.ucsf.edu>, R-devel <r-devel at r-project.org> Subject: Re: [Rd] > R CMD check for the R code from vignettes Message-ID: > <538C0654.7050205 at gmail.com> Content-Type: text/plain; > charset=ISO-8859-1; format=flo...
2017 Mar 17
2
Support for user defined unary functions
...he R parser, neither of which is ideal for experimentation. The user defined pipe operator (%>%), now used by > 300 packages, is an example that giving package authors the power to experiment can produce beneficial ideas for the community. On Fri, Mar 17, 2017 at 9:46 AM, Gabriel Becker <gmbecker at ucdavis.edu> wrote: > Jim, > > One more note about precedence. It prevents a solution like the one you > proposed from solving all of the problems you cited. By my reckoning, a > "What comes next is for NSE" unary operator needs an extremely low > precedence, becau...
2017 Mar 16
2
Support for user defined unary functions
...r types > these machinations would be unnecessary. > > [1]: https://github.com/hadley/rlang/blob/master/R/tidy-unquote.R#L17 > [2]: https://cran.r-project.org/package=ensurer > [3]: https://cran.r-project.org/package=types > > On Thu, Mar 16, 2017 at 1:04 PM, Gabriel Becker <gmbecker at ucdavis.edu> > wrote: > > Martin, > > > > Jim can speak directly to his motivations; I don't claim to be able to do > > so. That said, I suspect this is related to a conversation on twitter > about > > wanting an infix "unquote" operator in th...
2016 May 24
2
Suggestion: mkString(NULL) should be NA
On Tue, May 24, 2016 at 9:30 AM, Jeroen Ooms <jeroen.ooms at stat.ucla.edu> wrote: > On Tue, May 24, 2016 at 5:59 PM, Gabriel Becker <gmbecker at ucdavis.edu> > wrote: > > Shouldn't Rf_mkString(NULL) return (the c-level equivalent of) > character() > > rather than the NA_character_? > > No. It should still be safe to assume that mkString() always returns a > character vector of exactly length one. Anythin...
2015 Oct 06
2
authorship and citation
Adrian, Responses inline On Tue, Oct 6, 2015 at 1:58 PM, Adrian Du?a <dusa.adrian at unibuc.ro> wrote: > Hi Gabriel, > > On Tue, Oct 6, 2015 at 10:59 PM, Gabriel Becker <gmbecker at ucdavis.edu> > wrote: > >> [...] >> >> At the very least, this is seems to be a flagrant violation of the >> *spirit* of the CRAN policy, which AFAIK is intended to enforce >> acknowledgement of the contributions of all copyright holders in the >> pac...