Differences between revisions 55 and 56
Deletions are marked like this. Additions are marked like this.
Line 25: Line 25:
Line 36: Line 35:
Line 46: Line 46:
Line 47: Line 48:
'''''last updated 29 May 2014'''''
||'''year''' ||'''y.tot.''' ||'''g.tot.''' ||
||2014 ||51 ||292 ||
||2013 ||90 ||241 ||
||2012 ||91 ||151 ||
||2011 ||60 ||60 ||


'''''last updated 6 Nov 2014'''''
||<tablestyle="text-align:center">'''year''' ||'''year total''' ||'''grand total''' ||
|| 2010 || 0 || 0 ||
|| 2011 || 60 || 60 ||
|| 2012 || 91 || 151 ||
|| 2013 || 90 || 241 ||
|| 2014 || 55 || 296 ||
Line 67: Line 66:

and this is a loop which regenerates the table data above:

{{{
@ total = 0
foreach year ( 2010 2011 2012 2013 2014 )
set count = (`ls --full-time * | awk '{print $6}' | grep $year | wc -l`)
@ total += $count
echo "|| $year || $count || $total ||"
end
}}}

FreeSurfer Stats

This page lists the various stats about the usage of freesurfer, with notes on how each is gathered.


Licenses

Binaries

last updated 6 Nov 2014

year

year total

grand total

2000

180

180

2001

157

337

2002

233

570

2003

392

962

2004

386

1348

2005

500

1848

2006

722

2570

2007

962

3532

2008

1126

4658

2009

1549

6207

2010

1915

8122

2011

2327

10449

2012

2551

13000

2013

2835

15835

2014

2952

18787

License count is made by ssh'ing to surfer, then

cd /home/httpd/FreeSurfer/customers

and each ???? and ????? file is a license. To license count by year, ex. 2014:

ls --full-time * | awk '{print $6}' | grep 2014 | wc -l

and this is a loop which regenerates the table data above:

@ total = 0
foreach year ( 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 )
set count = (`ls --full-time * | awk '{print $6}' | grep $year | wc -l`)
@ total += $count
echo "|| $year || $count || $total ||"
end

Open Source

last updated 6 Nov 2014

year

year total

grand total

2010

0

0

2011

60

60

2012

91

151

2013

90

241

2014

55

296

License count is made by ssh'ing to surfer, then:

cd /home/httpd/FreeSurfer/opensource

and each ???? and ????? file is a license. To license count by year, ex. 2014:

ls --full-time * | awk '{print $6}' | grep 2014 | wc -l

and this is a loop which regenerates the table data above:

@ total = 0
foreach year ( 2010 2011 2012 2013 2014 )
set count = (`ls --full-time * | awk '{print $6}' | grep $year | wc -l`)
@ total += $count
echo "|| $year || $count || $total ||"
end

FYI, here is the download page.


Mailing List

Subscribers

last updated 2 Oct 2013'

There are 1875 freesurfer mailing list subscribers (includes those who do not receive messages but can post).

To determine this number, login to the administrative interface of the freesurfer mailing list, click 'Membership Management', and the total number of users is shown italicized in the middle. This number includes those who have opted to not receive the mailings. To subtract who has opted to not receive emails, each of the 20 or so pages of the membership list must be checked (tedious, but this takes about five minutes, versus trying to figure out how this info is stored in the bowels of the mailing list server).

Monthly Post Count

last updated 7 feb 2012

month/year

posts

daily avg

jun2012

447

15

may2012

549

18

jan2012

382

12

dec2011

383

12

nov2011

419

14

oct2011

427

14

sept2011

478

15

aug2011

567

18

july2011

474

15

jun2011

390

13

may2011

400

13

april2011

399

13

mar2011

371

12

febl2011

406

15

jan2011

311

10

To get this data, goto https://mail.nmr.mgh.harvard.edu/pipermail//freesurfer/ and click on one of the "View by" links for a month, then look for the "Messages: ###" line for the number of posts that month.


Documentation

last updated 6 aug 2012

pages

date

1172

aug2012

1103

june2011

1096

july2010

which is available in SystemInfo. ( Note that as this counts only the non-system pages, it's a more accurate measure )

lines

date

90370

june2011

80681

july2010

Where the lines are defined by the number of carriage returns. The number of lines of every page in the wiki is in PageSize , which is exported to a text file and the second column is summed*. Note that the the PageSize of any moinmoin wiki shows the number of bytes of each page. To change it to the number of lines, the wiki engine (Python) is slightly modified.

edit Page.py . In the size() function, comment out the line

and add these two lines

* - To sum the columns, paste the PageSize page to a text file and use awk to sum.

See also PageHits.


References

last updated 7 may 2013

Google Scholar results to the search for 'FreeSurfer':

total results: 4440

By year, using custom range feature:

year

results

2013

426

2012

1310

2011

791

2010

596

2009

446

2008

230

2007

187

2006

101

2005

75

2004

60

2003

39

2002

17

2001

24

2000

5


Courses

See FsTutorial/CourseHistory


Tests

last updated 24 may 2011

467 unit tests

87 system tests

To count unit tests (the tests which are run nightly during 'make check'),

To count system tests (the tests run after recon-all is run on bert and ernie),

See DevelopersGuide/MartinosCenter for details on the build and test platforms.

FsStats (last edited 2024-02-29 13:04:30 by AllisonStevens)