1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
.. -*- mode: rst; fill-column: 78 -*-
.. ex: set sts=4 ts=4 sw=4 et tw=79:
.. _chap_popularity:
*********************
Popularity Statistics
*********************
Repository subscriptions
========================
Interactive visualization of new NeuroDebian repository subscriptions. Plotted
are each week's average number of daily subscriptions for all Debian and Ubuntu
releases. Statistics for individual releases can be compared by clicking on the
respective curves and labels in the legend.
Note that each machine only needs to be subscribed to the repository once, and
only subscriptions done via the website are counted.
.. raw:: html
<link href="/_static/nv.d3.css" rel="stylesheet" type="text/css">
<div><svg style="height:500px" id="subscriptionchart"></svg></div>
<script src="/_static/d3.v2.min.js"></script>
<script src="/_static/nv.d3.min.js"></script>
<script src="/_static/subscriptionchart.js"></script>
Popularity Contest
==================
We encourage you to participate in the `popularity
contest <http://popcon.debian.org>`_ (popcon), which anonymously
collects the list of packages you installed/use on your system.
Collecting such statistics is of particular importance for research
software projects as a proof of existing user-base.
In addition to popcon stats for your "core" distribution (e.g. `Debian
<http://popcon.debian.org/>`__ or `Ubuntu
<http://popcon.ubuntu.com/>`__), an interactive plot below summarizes number
of submissions to NeuroDebian's popcon server.
.. raw:: html
<div><svg style="height:500px" id="popconchart"></svg></div>
<script src="/_static/popconchart.js"></script>
You can get more information about submissions from `NeuroDebian Popularity
Contest <http://neuro.debian.net/popcon/>`__ page.
If upon installation of the system you rejected the invitation to participate
you can always change your decision by running::
sudo dpkg-reconfigure popularity-contest
.. note::
If you are deploying multiple systems through cloning, to not have
all systems considered as one, it would be necessary to re-generate
the random MY_HOSTID. Following commands ran as root should do it
(as root) without any interactive dialog::
sed -i -e 's,PARTICIPATE *= *.no.,PARTICIPATE="yes",g' -e '/^ *MY_HOSTID/d' /etc/popularity-contest.conf
DEBIAN_FRONTEND=noninteractive dpkg-reconfigure popularity-contest
.. include:: link_names.txt
|