Sascha0912 / masterthesis_d3

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

StudyU Extension

as a part of the masterthesis

This is the implementation of the StudyU extension. This is a work in progress version and should not be used in production.

Data

The required data format is JSON. The data needs to be prepared in the following way:

{
  "metadata": [
    "name": <String>,
    "time unit": <String>,
    "info": <String>,
    "treatment1_name": <String>,
    "treatment2_name": <String>
    
  ],
  "data": [
    {
      "id": <number, unique>,
      "value": <float>,
      "avg": <float>,
      "treatment": <String>
    },
    {
      "id": <number, unique>,
      "value": <float>,
      "avg": <float>,
      "treatment": <String>
    },
    ...
  ]
}

For each data series a separate JSON file must be created.

About

License:MIT License


Languages

Language:HTML 91.6%Language:Python 8.4%