Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Pandas Series not supported as data kwarg #12971

Closed
@stilley2

Description

@stilley2

Bug report

Bug summary

Passing a pandas Series object to axes.plot as data doesn't work.

This used to work in matplotlib 2.

Code for reproduction

frommatplotlibimportfigurefrommatplotlib.backends.backend_aggimportFigureCanvasAggimportpandasaspdif__name__=='__main__':fig=figure.Figure()ax=fig.add_subplot(1,1,1)data=pd.Series(data=[0,1],index=['xdata','ydata'])print(data['xdata'])print(data['ydata'])ax.plot('xdata','ydata',data=data,marker='o')canvas=FigureCanvasAgg(fig)canvas.print_figure('test.png')

Actual outcome

01Traceback (most recent call last):  File "test1.py", line 12, in <module>    ax.plot('xdata', 'ydata', data=data, marker='o')  File "/home/stilley2/anaconda3/envs/testmpl/lib/python3.7/site-packages/matplotlib/__init__.py", line 1805, in inner    return func(ax, *args, **kwargs)  File "/home/stilley2/anaconda3/envs/testmpl/lib/python3.7/site-packages/matplotlib/axes/_axes.py", line 1603, in plot    for line in self._get_lines(*args, **kwargs):  File "/home/stilley2/anaconda3/envs/testmpl/lib/python3.7/site-packages/matplotlib/axes/_base.py", line 393, in _grab_next_args    yield from self._plot_args(this, kwargs)  File "/home/stilley2/anaconda3/envs/testmpl/lib/python3.7/site-packages/matplotlib/axes/_base.py", line 342, in _plot_args    linestyle, marker, color = _process_plot_format(tup[-1])  File "/home/stilley2/anaconda3/envs/testmpl/lib/python3.7/site-packages/matplotlib/axes/_base.py", line 118, in _process_plot_format    'Unrecognized character %c in format string' % c)ValueError: Unrecognized character a in format string

Expected outcome

A plot with a point at (0, 1)

Matplotlib version

(installed using conda)

  • Operating system: Centos7
  • Matplotlib version: 3.0.1
  • Matplotlib backend: agg (but probably doesn't matter)
  • Python version: 3.7
  • Pandas version: 0.23.4

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions


    [8]ページ先頭

    ©2009-2025 Movatter.jp