假设我有下面的代码,使用pandas绘制一些非常简单的东西:
import pandas as pd
values = [[1, 2], [2, 5]]
df2 = pd.DataFrame(values, columns=['Type A', 'Type B'],
index=['Index 1', 'Index 2'])
df2.plot(lw=2, colormap='jet', marker='.', markersize=10,
title='Video streaming dropout by category')
我如何轻松地设置x和y标签,同时保留我使用特定的颜色映射的能力?我注意到熊猫DataFrames的plot()
包装器没有为此接受任何特定的参数。