Skip to content

Latest commit

 

History

History
314 lines (262 loc) · 7.68 KB

stats.md

File metadata and controls

314 lines (262 loc) · 7.68 KB
layout
base

{% include _includes/default-header.html %}

{% assign tutorials = site.pages | where:"layout", "tutorial_hands_on" %}

{% assign topics = site.data | where_exp: "item", "item.type" %} {% assign topics_science = topics | where: "type","use" | sort: "name" %} {% assign topics_technical = topics | where_exp: "item", "item.type != 'use'"%}

{% assign contributors = site.data['contributors'] | where_exp: "item", "item.halloffame != 'no'" | sort: "joined" %} {% assign contributors_by_month = contributors | group_by: "joined" %} {% assign contributors_over_time = "" | split: ',' %} {% assign contributors_over_time_labels = "" | split: ',' %} {% assign contributors_count = 0 %} {% for m in contributors_by_month %} {% assign new_contributors = m.items | size %} {% assign contributors_count = contributors_count | plus: new_contributors%} {% assign contributors_over_time = contributors_over_time | push: contributors_count %} {% assign contributors_over_time_labels = contributors_over_time_labels | push: m.name %} {% endfor %}

<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.3/Chart.bundle.js"></script> <script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-datalabels@0.7.0"></script> <style type="text/css" media="all"> .card-title { font-size: 2rem; text-align: center; } </style>

GTN Statistics

{{ topics | size }} Topics
{{ tutorials | size }} Tutorials
{{ contributors | size }} Contributors
{{ topics_science | size }} Scientific Topics
Growing Community
{{ topics_technical | size }} Technical Topics
New Contributors

Welcome to our newest members!

{% assign new_members = site.data['contributors'] | most_recent_contributors: 10 %}
<ul>
{% for m in new_members %}
    {% assign i = m[0] %}{% assign n = m[1].name %}
    <li>{% include _includes/contributor-badge.html id=i name=n %}</li>
{% endfor %}
</ul>
<p class="card-text">Thanks a lot for your contributions!</p>
Recently Updated Tutorials
{% assign latest_tutorials = tutorials | filter_recent_modified: 10 %} {% for tuto in latest_tutorials %} {% assign topic_id = tuto | get_topic %} {% assign topic = site.data[topic_id] %} {% endfor %}
DateTopicTitle
{{ tuto.last_modified_at | date: "%b %-d, %Y" }} {{ topic.title }} {{ tuto.title }}

Thanks a lot for your contributions!

<script type="text/javascript"> Chart.plugins.unregister(ChartDataLabels); function genColors(size) { var o = []; for(i = 0; i < size; i++){ o.push(`hsl(${ i * 360 / size }, 100%, 50%)`) } return o; } // Charts displaying number of tutorials per topic // Scientific Topics var tutoBar = document.getElementById('tutorialsBar'); var data_tutos = [{% for topic in topics_science %}{{site.pages | topic_filter: topic.name | size }}{%unless forloop.last%},{%endunless%}{% endfor %}]; var labels_topics = [{% for topic in topics_science %}"{{ topic.title }}"{%unless forloop.last%},{%endunless%}{% endfor %}]; var tutorialsBar = new Chart(tutoBar, { type: 'horizontalBar', data: { labels: labels_topics, datasets: [{ backgroundColor: genColors(data_tutos.length), data: data_tutos }] }, plugins: [ChartDataLabels], options: { legend: { display: false }, title: { display: true, text: 'Tutorials per Topic' }, plugins: { datalabels: { anchor: 'end', align: 'end' } } } }); // Technical Topics // Chart displaying number of tutorials per topic var tutoBarTechnical = document.getElementById('tutorialsBarTechnical'); var data_tutos = [{% for topic in topics_technical %}{{site.pages | topic_filter: topic.name | size }}{%unless forloop.last%},{%endunless%}{% endfor %}]; var labels_topics = [{% for topic in topics_technical %}"{{ topic.title }}"{%unless forloop.last%},{%endunless%}{% endfor %}]; var tutorialsBar = new Chart(tutoBarTechnical, { type: 'horizontalBar', data: { labels: labels_topics, datasets: [{ backgroundColor: genColors(data_tutos.length), data: data_tutos }] }, plugins: [ChartDataLabels], options: { scales: { xAxes: [{ ticks: { beginAtZero: true } }], }, legend: { display: false }, title: { display: true, text: 'Tutorials per Topic' }, plugins: { datalabels: { anchor: 'end', align: 'end' } } } }); // Contributors chart var contributorsGraph = document.getElementById('contributorsGraph'); var data_contributors = [{%for c in contributors_over_time %}{x:"{{contributors_over_time_labels[forloop.index]}}" , y: {{c}} } {%unless forloop.last%},{%endunless%}{%endfor%}]; var labels_contributors = [{%for l in contributors_over_time_labels %}"{{l}}"{%unless forloop.last%},{%endunless%}{%endfor%}]; var tutorialsBar = new Chart(contributorsGraph, { type: 'line', data: { datasets: [{ data: data_contributors, }] }, options: { scales: { yAxes: [{ ticks: { beginAtZero: true } }], xAxes: [{ type: 'time', time: { displayFormats:{month:'YYYY-MM'}, min:'2017-10', unit: 'month', distribution: 'linear' } }] }, legend: { display: false }, title: { display: true, text: 'Contributors over time' } } }); </script>

{% include _includes/default-footer.html %}