Skip to content

Instantly share code, notes, and snippets.

@keckelt
Last active November 24, 2021 09:53
Show Gist options
  • Save keckelt/9a70ca32c30887963983e55505b0312e to your computer and use it in GitHub Desktop.
Save keckelt/9a70ca32c30887963983e55505b0312e to your computer and use it in GitHub Desktop.
Papers
{
"$schema": "https://vega.github.io/schema/vega-lite/v4.json",
"description": "Publications planned and in progress.",
"width": 900,
"layer": [
{
"data": {"values": [
{
"paper": "Jupyter Notebook Provenance",
"end": "2022-03-01",
"lead": "Klaus"
},
{
"paper": "GraphTrain",
"end": "2022-03-31",
"lead": "Patrick"
},
{
"paper": "Coral: Cohort Comparison",
"end": "2022-03-31",
"lead": "Klaus"
},
{
"paper": "Coral Talk @ BioVis",
"start": "2022-04-01",
"end": "2022-05-01",
"lead": "Patrick"
}
]},
"transform": [{
"calculate": "datum.start ? timeParse(datum.start, '%Y-%m-%d') : now()",
"as": "start2"
},{
"filter": "datum.end>now()"
}],
"mark": {"type": "bar", "tooltip": true, "cornerRadius": 8},
"encoding": {
"x": {
"field": "start2", "type": "temporal", "title": "Time",
"axis": {"ticks": false, "grid": false, "labels": false}
},
"x2": {"field": "end", "type": "temporal"},
"y": {"field": "paper", "type": "nominal", "sort": null},
"color": {"field": "lead", "type": "nominal"}
}
},
{
"data": {
"values": [
{
"journal": "Application Note (major revision)",
"deadline": "2021-10-17"
},
{
"journal": "CHI & TVCG",
"deadline": "2021-09-16"
},
{
"journal": "EuroVis Full Paper",
"deadline": "2021-12-02"
},
{
"journal": "ISMB & BioVis Full Paper",
"deadline": "2022-01-13"
},
{
"journal": "ACM TiiS Human-Centered XAI",
"deadline": "2022-02-21"
},
{
"journal": "CG&A Human-Centered Vis for XAI",
"deadline": "2022-02-25"
},
{
"journal": "EuroVis Short paper",
"deadline": "2022-02-28"
},
{
"journal": "VIS Full paper (tbd)",
"deadline": "2022-03-31"
},
{
"journal": "EuroVis Poster",
"deadline": "2022-04-11"
},
{
"journal": "VIS Short paper (tbd)",
"deadline": "2022-06-01"
},
{
"journal": "BioVis Talk (tbd)",
"deadline": "2022-05-01"
},
{
"journal": "VisActivites (tbd)",
"deadline": "2022-07-01"
}
]
},
"transform": [{
"filter": "datum.deadline>now()"
}],
"encoding": {
"x": {"field": "deadline", "type": "temporal"}
},
"layer": [
{
"mark": {"type": "rule", "strokeDash": [3,3]}
}, {
"mark": {"type": "text", "align": "right", "angle": 30, "size": 10},
"encoding": {
"text": {"field": "journal"},
"y": {"value": -6}
}
}, {
"mark": {"type": "text", "align": "left", "angle": 30},
"encoding": {
"text": {"field": "deadline", "type": "temporal"},
"y": {"value": 180}
}
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment