{"id":13907076,"url":"https://github.com/RhoInc/ae-timelines","last_synced_at":"2025-07-18T05:30:33.097Z","repository":{"id":52064129,"uuid":"51319844","full_name":"RhoInc/ae-timelines","owner":"RhoInc","description":"AE Timelines built using Webcharts","archived":false,"fork":false,"pushed_at":"2021-05-07T21:07:27.000Z","size":275,"stargazers_count":7,"open_issues_count":9,"forks_count":2,"subscribers_count":14,"default_branch":"master","last_synced_at":"2024-11-17T11:56:48.586Z","etag":null,"topics":["clinical-trials","safety-monitoring"],"latest_commit_sha":null,"homepage":"http://rhoinc.github.io/ae-timelines/test-page/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RhoInc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-02-08T19:09:36.000Z","updated_at":"2023-05-17T22:53:07.000Z","dependencies_parsed_at":"2022-08-24T13:31:11.441Z","dependency_job_id":null,"html_url":"https://github.com/RhoInc/ae-timelines","commit_stats":null,"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RhoInc%2Fae-timelines","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RhoInc%2Fae-timelines/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RhoInc%2Fae-timelines/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RhoInc%2Fae-timelines/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RhoInc","download_url":"https://codeload.github.com/RhoInc/ae-timelines/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":226353561,"owners_count":17611726,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["clinical-trials","safety-monitoring"],"created_at":"2024-08-06T23:01:47.362Z","updated_at":"2024-11-25T15:31:10.988Z","avatar_url":"https://github.com/RhoInc.png","language":"JavaScript","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"# Adverse Event Timelines \n![alt tag](https://user-images.githubusercontent.com/31038805/31092946-129c8044-a77e-11e7-9f2f-4ba855684cdf.gif)\n\n## Overview\nAE-timelines is a JavaScript library built using Webcharts ([1](https://github.com/RhoInc/Webcharts), [2](https://github.com/RhoInc/webcharts-wrapper-boilerplate)) that creates an adverse event timeline for each participant in a clinical trial. Clicking on the y-axis tick labels also opens an adverse event-level participant view.\n\nUsers can filter and sort the timelines and drill down to each participant; the full functionality is described [here](https://github.com/RhoInc/ae-timelines/wiki/Technical-Documentation).\nThe library expects an [ADaM data structure](https://www.cdisc.org/system/files/members/standard/foundational/adam/ADaM_OCCDS_v1.0.pdf) by default but can be customized to use any dataset that is one record per adverse event.\nFull details about chart configuration are [here](https://github.com/RhoInc/ae-timelines/wiki/Configuration).\n\n## Typical Usage\nProvided the input data matches the ADaM standard, the code to initialize the chart looks like this: \n\n```javascript\n    d3.csv('ADAE.csv', function(data) {\n        aeTimelines('body', {}).init(data);\n    });\n\n```\n\nThe chart can be configured to facilitate non-standard data formats and to alter the chart itself. Overwrite the defaults with a custom settings object like so:\n\n```javascript\n    let settings = {\n        stdy_col: 'AESTDY',\n        endy_col: 'AEENDY',\n        color: {\n           value_col: 'AEREL',\n           label: 'Relationship'},\n        filters: [\n           {value_col: 'SEX', label: 'Sex'},\n           {value_col: 'RACE', label: 'Race'},\n           {value_col: 'ARM', label: 'Description of Planned Arm'}],\n        details: [\n           {value_col: 'INVID', label: 'Investigator Identifier'},\n           {value_col: 'AGE', label: 'Age'},\n           {value_col: 'AEDECOD', label: 'Dictionary-Derived Term'},\n           {value_col: 'AEBODSYS', label: 'Body System or Organ Class'}],\n        };\n\n    d3.csv('AE.csv', function(data) {\n        aeTimelines('body', settings).init(data);\n    });\n\n```\n\n## Links\n- [Interactive Example](https://rhoinc.github.io/ae-timelines/test-page/)\n- [Configuration](https://github.com/RhoInc/ae-timelines/wiki/Configuration) \n- [API](https://github.com/RhoInc/ae-timelines/wiki/API)\n- [Technical Documentation](https://github.com/RhoInc/ae-timelines/wiki/Technical-Documentation) \n- [Data Guidelines](https://github.com/RhoInc/ae-timelines/wiki/Data-Guidelines)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FRhoInc%2Fae-timelines","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FRhoInc%2Fae-timelines","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FRhoInc%2Fae-timelines/lists"}