最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

python - Create a legend taking into account both the size and color of a scatter plot - Stack Overflow

programmeradmin0浏览0评论

I am plotting a dataset using a scatter plot in Python, and I am encoding the data both in color and size. I'd like for the legend to represent this.

I am aware of .legend_elements(prop='sizes') but I can have either colors or sizes but not both at the same time. I found a way of changing the marker color when using prop='sizes' with th color argument, but that's not really what I intend to do (they are all the same color).

Here is a MWE:

import pandas as pd
import numpy as np
import pylab as pl

time = pd.DataFrame(np.random.rand(10))
intensity = pd.DataFrame(np.random.randint(1,5,10))
df = pd.concat([time, intensity], axis=1)

size = intensity.apply(lambda x: 10*x**2)

fig, ax = pl.subplots()
scat = ax.scatter(time, intensity, c=intensity, s=size)

lgd = ax.legend(*scat.legend_elements(prop="sizes", num=3, \
                fmt="{x:.1f}", func=lambda s: np.sqrt(s/10)), \
                title="intensity")

and I'd like to have the markers color-coded too.

Any help or hint would be appreciated!

I am plotting a dataset using a scatter plot in Python, and I am encoding the data both in color and size. I'd like for the legend to represent this.

I am aware of .legend_elements(prop='sizes') but I can have either colors or sizes but not both at the same time. I found a way of changing the marker color when using prop='sizes' with th color argument, but that's not really what I intend to do (they are all the same color).

Here is a MWE:

import pandas as pd
import numpy as np
import pylab as pl

time = pd.DataFrame(np.random.rand(10))
intensity = pd.DataFrame(np.random.randint(1,5,10))
df = pd.concat([time, intensity], axis=1)

size = intensity.apply(lambda x: 10*x**2)

fig, ax = pl.subplots()
scat = ax.scatter(time, intensity, c=intensity, s=size)

lgd = ax.legend(*scat.legend_elements(prop="sizes", num=3, \
                fmt="{x:.1f}", func=lambda s: np.sqrt(s/10)), \
                title="intensity")

and I'd like to have the markers color-coded too.

Any help or hint would be appreciated!

Share Improve this question asked yesterday MBRMBR 83615 silver badges35 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

Using legend_elements, you can get the size and a colour-based legend elements separately, then set the colours of the former with the latter. E.g.,

import pandas as pd
import numpy as np
import matplotlib.pyplot as pl

time = pd.DataFrame(np.random.rand(10))
intensity = pd.DataFrame(np.random.randint(1,5,10))
df = pd.concat([time, intensity], axis=1)

size = intensity.apply(lambda x: 10*x**2)

fig, ax = pl.subplots()
scat = ax.scatter(time, intensity, c=intensity, s=size)

# get sized-based legend handles
size_handles, text = scat.legend_elements(
    prop="sizes",
    num=3,
    fmt="{x:.1f}",
    func=lambda s: np.sqrt(s/10)
)

# get colour-based legend handles
colors = [c.get_color() for c in scat.legend_elements(prop="colors", num=3)[0]]

# set colours of the size-based legend handles
for i, c in enumerate(colors):
    size_handles[i].set_color(c)

# add the legend
lgd = ax.legend(size_handles, text, title="intensity")
发布评论

评论列表(0)

  1. 暂无评论