similar to: MetaCran website v1.0.0-alpha

Displaying 20 results from an estimated 10000 matches similar to: "MetaCran website v1.0.0-alpha"

2015 May 26
3
MetaCran website v1.0.0-alpha
One issue I have with this is that it doesn't point to the original GitHub repositories of the packages, so you end up with additional repositories on Github in Gabor's name that have nothing to do with the actual Github repositories of the packages. I understand that it's technically necessary, but I fear it will lead to a lot of confusion... On May 24, 2015, at 5:44 AM, Rainer M
2015 May 26
2
MetaCran website v1.0.0-alpha
On Tue, May 26, 2015 at 12:45 AM, G?bor Cs?rdi <csardi.gabor at gmail.com> wrote: > On Mon, May 25, 2015 at 8:28 PM, Simon Urbanek <simon.urbanek at r-project.org> > wrote: > >> One issue I have with this is that it doesn't point to the original GitHub >> repositories of the packages, so you end up with additional repositories on >> Github in Gabor's
2015 May 24
3
MetaCran website v1.0.0-alpha
Thanks for letting us know about the new website. Some comments: - Download statistics: Where are they from? CRAN does not monitor downloads generally, maybe some selected mirrors do. - Section "Recently updated" can only hold 9 packages, but frequently more than 9 get accepted even within an hour, hence not sure if this makes sense. - The links "Download R" and "CRAN
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 anyway. I was really responding to the
2015 May 26
0
MetaCran website v1.0.0-alpha
On Mon, May 25, 2015 at 8:28 PM, Simon Urbanek <simon.urbanek at r-project.org> wrote: > One issue I have with this is that it doesn't point to the original GitHub > repositories of the packages, so you end up with additional repositories on > Github in Gabor's name that have nothing to do with the actual Github > repositories of the packages. I understand that it's
2015 May 24
0
MetaCran website v1.0.0-alpha
G?bor Cs?rdi <csardi.gabor at gmail.com> writes: > Dear All, > > [ I was wondering if this should have gone to the new mailing list. Maybe. ] > > As some of you maybe know from my earlier posts, I am building a simple > search engine for R packages. Now the search engine has a proper web site, > where you can also browse CRAN packages. > > http://www.r-pkg.org/
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 point (state of trunk), right? > Well,
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
2015 May 25
0
MetaCran website v1.0.0-alpha
On Sun, May 24, 2015 at 7:40 PM, Uwe Ligges <ligges at statistik.tu-dortmund.de > wrote: > Thanks for letting us know about the new website. Some comments: - Download statistics: Where are they from? CRAN does not monitor downloads > generally, maybe some selected mirrors do. > It's the RStudio mirror only. It is mentioned on the Services page and on the page of the
2015 May 26
0
MetaCran website v1.0.0-alpha
On Tue, May 26, 2015 at 10:55 AM, G?bor Cs?rdi <csardi.gabor at gmail.com> wrote: > 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? > Sort of, the link
2015 May 26
2
MetaCran website v1.0.0-alpha
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. You can probably use this field to check if a package is on Github or not. If it is, you may just fork the original repo instead of creating a new one from the CRAN package. I'm not sure how technically difficult it would be for you.
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. You can probably use this field to
2011 Oct 19
3
RFC: 'igraph' package update and backward compatibility
Dear R developers, I am seeking advice on some $subject matter. My package will have an update soon, that is not backward compatible with the current version. It will likely break much of the existing code. Many (~50) packages depend on 'igraph' and they, too, will most probably break with the new version. My intended solution is, that I create a snapshot of the current package, under
2015 May 26
0
MetaCran website v1.0.0-alpha
That's true, but issues, checkouts, comments, credit, etc should all be going to the original repo. Anything else seems grossly unfair to the package author(s). This issue is exacerbated even further when the the author isn't developing the package on github at all, and github users may unintentionally begin to view the forks as the actual canonical sources for the package. Also, the
2015 Jul 16
2
Building r-devel fails on Ubuntu (old and new as well)
... making array.d from array.c array.c:33:23: fatal error: duplicate.h: No such file or directory compilation terminated. ... https://travis-ci.org/metacran/r-builder/builds/71225331#L7405 fyi. Gabor
2008 Mar 14
2
Selecting elements in vector
Hi Consider the following code > x <- rep(1:13, 13) > y <- 1:3 I want to select all elements in x which are equal to 1, 2 or 3. I know that I could use > sel <- x==y[1] | x==y[2] | x==y[3] > x[sel] to obtain the values, but in my analysis, the y-vector is thousands of elements long. Is there any way, that I can do that easily? Thanks Rainer -- Rainer M. Krug, Dipl.
2020 Sep 22
3
R > 4.0.0 on Debian 9 Stretch?
Hi Dirk, Thanks for the explamnayion - Debian is running in a VM (and nothing really installed on it) , and I think the easiest is for me just to install Debian 10 and to use that one. Thanks a lot, Rainer > On 22 Sep 2020, at 15:14, Dirk Eddelbuettel <edd at debian.org> wrote: > > > On 22 September 2020 at 14:49, Rainer M Krug wrote: > | I know this is likely
2017 Nov 09
2
[R-pkgs] Release of ess 0.0.1
> * Jorge Cimentada <pvzragnqnw at tznvy.pbz> [2017-11-09 00:02:53 +0100]: > > I'm happy to announce the release of ess 0.0.1 a package designed to > download data from the European Social Survey Given the existence of ESS (Emacs Speaks Statistics - https://ess.r-project.org/) the package name "ess" seems unfortunate. -- Sam Steingold (http://sds.podval.org/) on
2006 Sep 20
4
Calculating mean together with split
Hi I have a table called npl containing results of simulations. It contains about 19000 entries and the structure looks like this: NoPlants sim run year DensPlants 1 6 lng_cs99_renosterbos 1 4 0.00192 . . . it has 43 different entries for sim and year goes from 1 to 100, and run from 1 to 5. I would like to calculate the mean of DensPlants for each
2020 Sep 22
2
R > 4.0.0 on Debian 9 Stretch?
Hi I know this is likely documented somewhere, but I can?t find it. How can I install R > 4.0.0 on Debian 9 Stretch? Thanks a lot, Rainer -- Rainer M. Krug, PhD (Conservation Ecology, SUN), MSc (Conservation Biology, UCT), Dipl. Phys. (Germany) Orcid ID: 0000-0002-7490-0066 Department of Evolutionary Biology and Environmental Studies University of Z?rich Office Y34-J-74