Plotting with pandas and matplotlib

前端 未结 1 1126
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-28 00:06

I\'m trying to create a scatter plot in Python. I have a dataframe \'df\' with a specified category and x and y are column numbers:

groups = df.groupby(category)         


        
1条回答
  •  隐瞒了意图╮
    2021-01-28 00:57

    ax.plot does not have x and y arguments.

    The signature is Axes.plot(*args, **kwargs), meaning that x and y are simply positional arguments. If you specify x= and y= they will be treated as keyword arguments and ignored.

    So remove x= and y= from the code,

    ax.plot(group.iloc[:,x], group.iloc[:,y], marker='o', linestyle='',label=name)
    

    Complete example:

    import numpy as np
    import pandas as pd
    import matplotlib.pyplot as plt
    
    df = pd.DataFrame({"x":np.random.rand(40), 
                       "y":np.random.rand(40),
                       "category": np.random.choice(list("ABCD"), size=40)})
    category = "category"
    x=1; y=2
    groups = df.groupby(category)
    fig, ax = plt.subplots()
    for name, group in groups:
        ax.plot(group.iloc[:,x], group.iloc[:,y], marker='o', linestyle='',label=name)
    fig = ax.get_figure()
    #fig.savefig(path)
    plt.show()
    

    0 讨论(0)
提交回复
热议问题