import matrix
m = matrix.Matrix(
    criteria=('taste', 'color'),
    weights=(7, 3)
)
m.rate_choices({
    'apple': {'taste': 7, 'color': 5},
    'orange': {'taste': 9, 'color': 3}
})
m.plot()  # doctest: +SKIP
