I've tried to adapt a script that was answered here before, to filter the top ten suppliers (proveedor_nombre
), this means, the ones that got more money in descending order, but never gets to work.
Since I'm not even sure of what I'm doing wrong, is there any way you guys know I can get the desired outcome
Here's the raw code:
# Monto total asignado por proveedor
proveedores_dinero = alt.Chart(df).mark_circle().encode(
x = alt.X('proveedor_nombre:N'),
y = alt.Y('sum(monto_contrato_minimo):Q'),
)
proveedores_dinero
And here the output:
It is possible to apply
rank
ontransform_window
to filter topn
results. However, the circles of missing proveedores will be ploted on the axisx=0
, in this case, it worked to filtery
values by the topn+1
value. In the following example, I'm plotting the top 3 proveedor of 6 possible.will result in