similar to: Milestone: 8000 packages on CRAN

Displaying 20 results from an estimated 500 matches similar to: "Milestone: 8000 packages on CRAN"

2016 Mar 01
0
Milestone: 8000 packages on CRAN
Thank you very much, Henrik, for maintaining this list -- it's always a pleasure to see the ever growing number of useful R packages! I decided a few times in the past to extend your research with the list of archived packages, but did not actually start coding -- until tonight: https://gist.github.com/daroczig/3cf06d6db4be2bbe3368 (this includes the a CSV with 9K rows, so might be slow to
2016 Aug 22
2
Milestone: 9000 packages on CRAN
An additional 1000 packages have been added to CRAN. This time, it took less than 6 months. Today (August 22, 2016), the Comprehensive R Archive Network (CRAN) [1] reports: ?Currently, the CRAN package repository features 9004 available packages.? The rate with which new packages are added to CRAN is increasing. During 2007-2009 we went from 1000 to 2000 packages in 906 days (1.1 per day) and
2017 Dec 15
1
Milestone: 12,000 packages on CRAN
CRAN reached 12,000 packages [1] today (December 15, 2017). A huge thank you to the CRAN team! Milestones: 2017-12-15 12000 pkgs (+6.1/day over 165 days) 6910 mnts (+3.2/day) 2017-07-04 11000 pkgs (+6.3/day over 159 days) 6377 mnts (+3.3/day) 2017-01-27 10000 pkgs (+6.3/day over 158 days) 5845 mnts (+3.5/day) 2016-08-22 9000 pkgs (+5.7/day over 175 days) 5289 mnts (+5.8/day) 2016-02-29 8000
2017 Jan 28
2
Subject: Milestone: 10000 packages on CRAN
Continuing the tradition to post millennia milestones on CRAN: So, it happened. Today (January 27, 2017 PCT) CRAN reached 10,000 packages [1]. Needless to say, the rate with which new packages are added to CRAN keeps increasing and so does the number of contributors (maintainers). Somewhere out there, there are ~3 persons who are about to submit their first packages to CRAN today and ~3 persons
2016 Aug 22
1
Milestone: 9000 packages on CRAN
The entirety of humanity lives a little better today, because of problems solved using CRAN software. Some of those problems would still await solution, because some of the people involved in developing and disseminating those solutions would not have been as effective or efficient without CRAN and R. We're not just laying brick: We're building a cathedral. Spencer
2016 Aug 22
0
Milestone: 9000 packages on CRAN
Hear! Hear! +100 for the shout out to the CRAN volunteers. Some of the most unsung heroes of the R universe. On Mon, Aug 22, 2016 at 5:16 AM, Henrik Bengtsson < henrik.bengtsson at gmail.com> wrote: > An additional 1000 packages have been added to CRAN. This time, it > took less than 6 months. Today (August 22, 2016), the Comprehensive R > Archive Network (CRAN) [1] reports: >
2014 Oct 29
0
Milestone: 6000 packages on CRAN
Another 1000 packages were added to CRAN and this time in less than 12 months. Today (2014-10-29) on The Comprehensive R Archive Network (CRAN) [1]: "Currently, the CRAN package repository features 6000 available packages." Going from 5000 to 6000 packages took 355 days - which means that it's on average was only ~8.5 hours between each new packages added. It is actually even be
2013 Nov 08
1
Milestone: 5000 packages on CRAN
Here we go again... Today (2011-11-08) on The Comprehensive R Archive Network (CRAN) [1]: "Currently, the CRAN package repository features 5001 available packages." Going from 4000 to 5000 packages took 14.5 months - that's one new package every 10.5 hours. Behind every package there are real people. These user-contributed packages are maintained by ~2900 people [2] - that's
2017 Jan 29
0
R-devel Digest, Vol 167, Issue 25
Hi, Short answer: import 'as.matrix' and export your method(s) for it. From WRE: "All S4 classes to be used outside the package need to be listed in an exportClasses directive. Alternatively, they can be specified using exportClassPattern.(46) in the same style as for exportPattern. To export methods for generics from other packages an exportMethods directive can be used."
2017 Jan 30
0
Matrix package breaks as.matrix method
Georgi, Brilliant, thank you very much for the helpful reply and explanation! I added 'importFrom("Matrix","as.matrix")' to my NAMESPACE and all worked fine! As my 'as.matrix' method is used entirely internally to the 'testmat' function (and not "used outside the package"), I don't think I actually need to export it. In my case, testmat is
2012 Aug 23
1
Milestone: 4000 packages on CRAN
Today (2012-08-23) on CRAN [1]: "Currently, the CRAN package repository features 4001 available packages." These packages are maintained by approximately 2350 different folks. Previous milestones: 2011-05-12: 3,000 packages [1] 2009-10-04: 2,000 packages [2] 2007-04-12: 1,000 packages [3] 2004-10-01: 500 packages [4] 2003-04-01: 250 packages [4] [1]
2011 May 12
0
Milestone: 3000 packages on CRAN
So, it's time again. Today (2011-05-12) on CRAN [1]: "Currently, the CRAN package repository features 3000 available packages." Previous milestones: 2009-10-04: 2,000 packages [2] 2007-04-12: 1,000 packages [3] 2004-10-01: 500 packages [4] 2003-04-01: 250 packages [4] [1] http://cran.r-project.org/web/packages/ [2]
2016 Nov 11
2
Memory leak with tons of closed connections
On Fri, Nov 11, 2016 at 12:08 PM, Martin Maechler <maechler at stat.math.ethz.ch> wrote: >>>>>> Gergely Dar?czi <daroczig at rapporter.net> >>>>>> on Thu, 10 Nov 2016 16:48:12 +0100 writes: > > > Dear All, > > I'm developing an R application running inside of a Java daemon on > > multiple threads, and
2016 Nov 13
1
Memory leak with tons of closed connections
Using dup() before fdopen() (and calling fclose() on the connection when it is closed) indeed fixes the memory leak. FYI, Gabor Index: src/main/connections.c =================================================================== --- src/main/connections.c (revision 71653) +++ src/main/connections.c (working copy) @@ -576,7 +576,7 @@ fp = R_fopen(name, con->mode); } else { /* use
2016 Nov 10
2
Memory leak with tons of closed connections
Dear All, I'm developing an R application running inside of a Java daemon on multiple threads, and interacting with the parent daemon via stdin and stdout. Everything works perfectly fine except for having some memory leaks somewhere. Simplified version of the R app: while (TRUE) { con <- file('stdin', open = 'r', blocking = TRUE) line <- scan(con,
2006 Jan 23
2
Multiple Row Form similar to Milestones on BaseCamp
Hi all, Wondering how to setup my view and controller to do something similar to the form on Basecamp that allows adding up to 10 milestones on one page. Thanks Phil -- Posted via http://www.ruby-forum.com/.
2006 Sep 01
1
IRC Milestone
I know this is a basically meaningless milestone, but for some reason it means something to me. For the first time (as far as I know), #puppet on irc.freenode.net has more users than #cfengine: 21 vs. 19. Admittedly, that''s a low user count for #cfengine, but I''ll take it. :) -- Honest criticism is hard to take, particularly from a relative, a friend, an acquaintance, or
2005 Sep 16
2
ServiceControl work has hits milestone
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 w00t! Coming soon to a Samba near you :-) cheers, jerry - ------- $ bin/net -S rain -U jerry rpc service status postfix postfix service is stopped. Configuration details: ~ Service Type = 0x10 ~ Start Type = 0x3 ~ Error Control = 0x1 ~ Tag ID = 0x0 ~ Executable Path
2007 Aug 30
1
Milestone release for rsync 3.0.0?
Wayne, Rsync 3.0.0 has been under development for 8 months now, but its final release still appears to be a very long way off, and at least one person has expressed interest in having a copy of rsync 3.0.0 to try out ( http://lists.samba.org/archive/rsync/2007-February/017372.html ). I encourage you to make a "milestone" release of rsync 3.0.0 (like the Eclipse people do) and encourage
2019 Jun 24
0
[Bug 1345] New: There is no milestone named '---' in the 'libnetfilter_conntrac' product.
https://bugzilla.netfilter.org/show_bug.cgi?id=1345 Bug ID: 1345 Summary: There is no milestone named '---' in the 'libnetfilter_conntrac' product. Product: bugzilla Version: other Hardware: x86_64 OS: All Status: NEW Severity: normal Priority: P5