VegaLite({
data: { values: dataFile },
width: 800,
height: 500,
layer: [
{
mark: "line",
encoding: {
x: {
timeUnit: "hours",
field: "WatchTimeParsed",
title: "Watch Time",
type: "temporal"
},
y: {
aggregate: "average",
field: "Addiction Level",
title: "Metric Value",
type: "quantitative"
},
color: { value: "red" },
tooltip: [{ field: "Addiction Level", type: "quantitative" }]
}
},
{
mark: "line",
encoding: {
x: {
timeUnit: "hours",
field: "WatchTimeParsed",
type: "temporal"
},
y: {
aggregate: "average",
field: "ProductivityLoss",
type: "quantitative"
},
color: { value: "blue" },
tooltip: [{ field: "ProductivityLoss", type: "quantitative" }]
}
},
{
mark: "line",
encoding: {
x: {
timeUnit: "hours",
field: "WatchTimeParsed",
type: "temporal"
},
y: {
aggregate: "average",
field: "Self Control",
type: "quantitative"
},
color: { value: "green" },
tooltip: [{ field: "Self Control", type: "quantitative" }]
}
}
]
})