(pd)
| 668 | |
| 669 | |
| 670 | def test_pandas_indexing(pd): |
| 671 | |
| 672 | # Should not fail break when faced with a |
| 673 | # non-zero indexed series |
| 674 | index = [11, 12, 13] |
| 675 | ec = fc = pd.Series(['red', 'blue', 'green'], index=index) |
| 676 | lw = pd.Series([1, 2, 3], index=index) |
| 677 | ls = pd.Series(['solid', 'dashed', 'dashdot'], index=index) |
| 678 | aa = pd.Series([True, False, True], index=index) |
| 679 | |
| 680 | Collection(edgecolors=ec) |
| 681 | Collection(facecolors=fc) |
| 682 | Collection(linewidths=lw) |
| 683 | Collection(linestyles=ls) |
| 684 | Collection(antialiaseds=aa) |
| 685 | |
| 686 | |
| 687 | @mpl.style.context('default') |
nothing calls this directly
no test coverage detected
searching dependent graphs…