我有一个如下所示的数据框架
color x y
0 red 0 0
1 red 1 1
2 red 2 2
3 red 3 3
4 red 4 4
5 red 5 5
6 red 6 6
7 red 7 7
8 red 8 8
9 red 9 9
10 blue 0 0
11 blue 1 1
12 blue 2 4
13 blue 3 9
14 blue 4 16
15 blue 5 25
16 blue 6 36
17 blue 7 49
18 blue 8 64
19 blue 9 81
我最终想要两条线,一条蓝线,一条红线。红线应该是 y = x,蓝线应该是 y = x ^ 2
当我做以下事情时:
df.plot(x='x', y='y')
结果是这样的:
有没有办法让熊猫知道有两套?然后把他们分组。我希望能够指定列 color
作为集微分器