Skip to content

Latest commit

 

History

History
 
 

implementations

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

Reference implementations

This directory provides reference implementations for the metrics defined by the working group. All these reference implementations use data produced by Perceval to show how the metric could be implemented in detail. All of these reference implementations are not intended to be specially good in performance, or ready for production, but good and easy to follow examples of how the intended metrics can be computed.

List of reference implementations

Contents of this directory

We use Python Jupyter notebooks as the framework for producing the implemenations that will be explanatory in regard to the analysis performed. These notebooks come in two flavors:

  • notebooks are reference implementations using plain Python for computing the metrics. In these cases, the data produced by Perceval is processed as a Python list, using as much as possible plain Python mechanisms.

  • notebooks_df are reference implementations using Pandas data frames as the base for computing the metrics. In these cases, the data produced by Perceval is converted to a Pandas dataframe, and then processed to produce the metrics.

Notebooks are also exported as Python modules. These are more useful if you intend to look only at the code:

For the implementations with data frames, you can find the following modules:

  • Root module (module):
    This file contains the root class, Metric. All other classes inherit from it. It takes JSON data collected by Perceval and converts it into a form easier to analyze: like a dataframe, or a list of dictionaries.

  • Category modules:
    These classes provide basic functionality which is common to all metric classes working on the same category of data: commits, issues or pull request. The three category modules are:

  • Individual Metric modules:
    These are python scripts converted from the reference implementation notebooks. They inherit from the Category modules, but have the most important function of all --- to calculate values for the metrics they represent.

  • source code check (module):
    An important aspect of several metrics is how source code is defined. The is_source_code module provides several algorithms. Currently, the following are provided:

    • Naive
    • FolderExclude
    • ExtensionExclude
  • utilities (module):
    utils.py contains functions which help in reading JSON files, converting dates in string format to datetime objects, etc.

To summarize, the class heirarchy is:

Root class (metric.py) <- Category classes (commit.py, for example) <- Metric classes

How to run the notebooks

Binder

You can run the notebooks directly in Binder: Just click on the "launch binder" logo above.

You can also run the notebooks locally on your computer. For that, you need a Python3 environment with certain modules installed (it is recommended to use a virtual environment, see Creation of virtual environments). To install the modules, just use pip3:

$ pip install jupyter
$ pip install pandas
$ pip install perceval

(check at the beginning of each notebook just in case more modules need to be installed).

Clone this repository and change directory to where this notebook resides:

$ git clone https://github.com/chaoss/wg-gmd
$ cd wg-gmd/implementations/notebooks_df

Then launch Jupyter from the command line...

$ jupyter notebook

This will launch the Jupyter kernel, and will open your default browser with the directory with all the notebooks loaded. Click on the notebook you want to run, and you're ready to go. More detailed instructions can be found in Introducing the Notebook Server’s Command Line Options.

Once you have the notebook in your browser, you can execute the selected cell by clicking [CTRL][Enter], or [Shift][Enter]. In the latter case, the current cell will be run, and the next one will be selected. For selecting any cell, just click on it.

So, if you want to execute the whole dashboard, just select the first cell, and click [Shift][Enter] until you're done. You can also click on the Cell menu, and select "Run All", which will also run all the cells in the notebook. More details can be found in Executing a notebook.

If you want to modify any cell, just click on it, look for the cursor, and start writing.

If you want more details and context about Jupyter notebooks, have a look at Jupyter Notebook Tutorial.

Notes

  • Every metric is computed for all the items in the data structure used to instantiate the corresponding class. If a data structure contains items of a single repository, only that repository will be considered for calculating the metric. Likewise, using the data of an entire project, (consisting of several repositories) will result in the metric being computed for the entire project and not for each individual repository.

  • Another assumption is that the JSON data file has items of the same kind, for example: commits, issues or pull requests.