Plot.plot({
aspectRatio:1,
color:{legend:true, domain:[1, 100], scheme:'Plasma'},
x: {axis:false},
y: {axis:false, reverse:true},
marks: [
Plot.rect(df_world, {x:'x', y:'y', interval:1, fill:'#666'}),
Plot.rect(df_ratio, {x:'x', y:'y', interval:1, fill:'student_ratio'}),
Plot.text(df_world, {x:'x', y:'y', text:'alpha.2', fill:'#fff', dx:12, dy:12})
]
})