Skip to content

[ENH]: consistent behaviour for stem #23127

Closed
@Atcold

Description

@Atcold

Problem

stem and plot should be interchangeable.

from matplotlib.pylab import *
style.use(['bmh', 'dark_background'])
a = randn(5)
b = randn(5)

Plotting two lines

plot(a)
plot(b)

image

Choosing the colours

plot(a, 'r')
plot(b, 'b')

image

Now with stem

stem(a)
stem(b)

image

Same colour? Why? Which one is which???

Okay, let me choose the colours

stem(a, 'r')
stem(b, 'b')

ERROR!

Proposed solution

Share the same basic syntax across functions visualising the same type of data?

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions