xxxxxxxxxx
18
let table, score, length;
function preload() {
table = loadTable("https://corgis-edu.github.io/corgis/datasets/csv/video_games/video_games.csv", "csv", "header");
}
function setup() {
createCanvas(400, 400);
score = table.getColumn("Metrics.Review Score");
length = table.getColumn("Length.All PlayStyles.Average");
noLoop();
}
function draw() {
background(0);
for(let i = 0; i < score.length; i++) {
ellipse(i * width / score.length, i * height / score.length, score[i], length[i]);
}
}