VegaLite({
data: {values: portMathArray},
"title": "Impact of hangouts on G1,G2,and G3, indicating grades for 1st period, 2nd period and final period",
"repeat": {"column": ["G1", "G2", "G3"]},
"spec": {
"layer": [
{
"mark": "point",
"encoding": {
"y": {
"aggregate": "mean",
"field": {"repeat": "column"},
"type": "quantitative",
"scale": {"domain": [0,12]}
},
"x": {
"field": "goout",
"type": "nominal",
"title": "Frequency of hangouts",
},
"detail": {
"field": "goout",
"type": "nominal"
},
"color": {"aggregate": "count", "type": "quantitative"},
"opacity": {"value": 1}
}
},
{
"mark": "line",
"encoding": {
"y": {
"aggregate": "mean",
"field": {"repeat": "column"},
"type": "quantitative"
},
"x": {
"field": "goout",
"type": "nominal"
},
"color": {"aggregate": "count",
"type": "quantitative",
"title": "Number of students", }
}
}
]
}
})