遇见数据集

Geographic Diversity in Public Code Contributions — Replication Package

收藏
Zenodo2022-10-19 更新2026-05-25 收录
数据链接:
官方服务:

资源简介:

Geographic Diversity in Public Code Contributions - Replication Package This document describes how to replicate the findings of the paper: Davide Rossi and Stefano Zacchiroli, 2022, <em>Geographic Diversity in Public Code Contributions - An Exploratory Large-Scale Study Over 50 Years</em>. In 19th International Conference on Mining Software Repositories (MSR ’22), May 23-24, Pittsburgh, PA, USA. ACM, New York, NY, USA, 5 pages. https://doi.org/10.1145/3524842.3528471 This document comes with the software needed to mine and analyze the data presented in the paper. Prerequisites These instructions assume the use of the bash shell, the Python programming language, the PosgreSQL DBMS (version 11 or later), the zstd compression utility and various usual *nix shell utilities (cat, pv, …), all of which are available for multiple architectures and OSs.<br> It is advisable to create a Python virtual environment and install the following PyPI packages: <pre><code>click==8.0.4 cycler==0.11.0 fonttools==4.31.2 kiwisolver==1.4.0 matplotlib==3.5.1 numpy==1.22.3 packaging==21.3 pandas==1.4.1 patsy==0.5.2 Pillow==9.0.1 pyparsing==3.0.7 python-dateutil==2.8.2 pytz==2022.1 scipy==1.8.0 six==1.16.0 statsmodels==0.13.2</code></pre> Initial data <code>swh-replica</code>, a PostgreSQL database containing a copy of Software Heritage data. The schema for the database is available at https://forge.softwareheritage.org/source/swh-storage/browse/master/swh/storage/sql/.<br> We retrieved these data from Software Heritage, in collaboration with the archive operators, taking an archive snapshot as of 2021-07-07. We cannot make these data available in full as part of the replication package due to both its volume and the presence in it of personal information such as user email addresses. However, equivalent data (stripped of email addresses) can be obtained from the Software Heritage archive dataset, as documented in the article: Antoine Pietri, Diomidis Spinellis, Stefano Zacchiroli, <em>The Software Heritage Graph Dataset: Public software development under one roof</em>. In proceedings of MSR 2019: The 16th International Conference on Mining Software Repositories, May 2019, Montreal, Canada. Pages 138-142, IEEE 2019. http://dx.doi.org/10.1109/MSR.2019.00030.<br> Once retrieved, the data can be loaded in PostgreSQL to populate <code>swh-replica</code>. <code>names.tab</code> - forenames and surnames per country with their frequency <code>zones.acc.tab</code> - countries/territories, timezones, population and world zones <code>c_c.tab</code> - ccTDL entities - world zones matches Data preparation Export data from the <code>swh-replica</code> database to create <code>commits.csv.zst</code> and <code>authors.csv.zst</code> <pre><code>sh&gt; ./export.sh</code></pre> Run the authors cleanup script to create <code>authors--clean.csv.zst</code> <pre><code>sh&gt; ./cleanup.sh authors.csv.zst</code></pre> Filter out implausible names and create <code>authors--plausible.csv.zst</code> <pre><code>sh&gt; pv authors--clean.csv.zst | unzstd | ./filter_names.py 2&gt; authors--plausible.csv.log | zstdmt &gt; authors--plausible.csv.zst</code></pre> Zone detection by email Run the email detection script to create <code>author-country-by-email.tab.zst</code> <pre><code>sh&gt; pv authors--plausible.csv.zst | zstdcat | ./guess_country_by_email.py -f 3 2&gt; author-country-by-email.csv.log | zstdmt &gt; author-country-by-email.tab.zst</code></pre> Database creation and initial data ingestion Create the PostgreSQL DB <pre><code>sh&gt; createdb zones-commit</code></pre> Notice that from now on when prepending the <code>psql&gt;</code> prompt we assume the execution of psql on the <code>zones-commit</code> database. Import data into PostgreSQL DB <pre><code>sh&gt; ./import_data.sh</code></pre> Zone detection by name Extract commits data from the DB and create <code>commits.tab</code>, that is used as input for the zone detection script <pre><code>sh&gt; psql -f extract_commits.sql zones-commit</code></pre> Run the world zone detection script to create <code>commit_zones.tab.zst</code> <pre><code>sh&gt; pv commits.tab | ./assign_world_zone.py -a -n names.tab -p zones.acc.tab -x -w 8 | zstdmt &gt; commit_zones.tab.zst</code></pre> Use <code>./assign_world_zone.py --help</code> if you are interested in changing the script parameters. Ingest zones assignment data into the DB <pre><code>psql&gt; \copy commit_zone from program 'zstdcat commit_zones.tab.zst | cut -f1,6 | grep -Ev ''\s$'''</code></pre> Extraction and graphs Run the script to execute the queries to extract the data to plot from the DB. This creates <code>commit_zones_7120.tab</code>, <code>author_zones_7120_t5.tab</code>, <code>commit_zones_7120.grid</code> and <code>author_zones_7120_t5.grid</code>.<br> Edit <code>extract_data.sql</code> if you whish to modify extraction parameters (start/end year, sampling, …). <pre><code>sh&gt; ./extract_data.sh</code></pre> Run the script to create the graphs from all the previously extracted tabfiles. <pre><code>sh&gt; ./create_stackedbar_chart.py -w 20 -s 1971 -f commit_zones_7120.grid -f author_zones_7120_t5.grid -o chart.pdf</code></pre>

提供机构:
Zenodo
创建时间:
2022-03-28
二维码
社区交流群
二维码
科研交流群
商业服务