Sorting a sparse axis array in JuMP

Hi there! Take a read of Please read: make it easier to help you. In particular, it’s easier to help if you provide a minimal working example and avoid using screenshots.

y = [(k, value(Status[k]) for k in eachindex(Status)]
sort!(y, by = x -> x[2])

But it looks like you might want

y = [k for k in eachindex(Status) if value(Status[k]) > 0.5]