Published
Edited
Jan 5, 2021
1 fork
Insert cell
Insert cell
Insert cell
viewof participantCount = html`<input type="text" placeholder="Participant Count" value=10>`
Insert cell
viewof hasSelected = html`<input type="checkbox" checked="checked">`
Insert cell
viewof ratio = html`<input type="text" placeholder="Aspect Ratio" value="1.5">`
Insert cell
viewof boostSelected = html`<input type="text" placeholder="Boost Selected" value="1.1">`
Insert cell
viewof width = html`<input type="text" placeholder="Width" value="800">`
Insert cell
viewof height = html`<input type="text" placeholder="height" value="600">`
Insert cell
Insert cell
Insert cell
options = {
let factors = [];
let totalArea = height * width;
let options = hasSelected ? [{min:1,size:1},{min:2,size:4},{min:3,size:9},{min:4,size:16}] : [{min:1,size:1}];
for(let h = 0; h <= options.length-1; h++)
{
let areaCount = participantCount-1+options[h].size;
let max = 2 * (areaCount-1);
for(let i = options[h].min; i <= max; i++)
{
for(let j = areaCount; j <= max; j++)
{
let x = i;
let y = j / i;
if(j % i !== 0)
{
continue;
}
if(y < options[h].min)
{
continue;
}
if((x*y)-Math.min(y,x) >= areaCount)
{
continue;
}

let h1 = y * (width / x) / ratio;
var area;
if(h1 <= height)
{
area = (width / x) * (h1 / y)
}
else
{
let w1 = x * (height / y) * ratio;
area = (w1 / x) * (height / y);
}
let boost = (hasSelected && options[h].min > 1) ? boostSelected : 1;
factors.push([options[h].min, x, y, boost * Math.round(area*areaCount/totalArea*100)]);
}
}
}
yield factors.sort(function(a,b)
{
return b[3]-a[3];
}).slice(0,5);
}
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more