wordcloud:创建自定义颜色或更改亮度

时间:2017-11-09 23:02:06

标签: python nlp data-visualization text-mining word-cloud

我正在尝试为我的文字云创建自定义颜色,并在文档中找到了以下功能。但是我们选择的单色有hsl值。如官方文档(灰色)。 enter image description here

def grey_color_func(word, font_size, position, orientation, random_state=None,
                        **kwargs):
        return ("hsl(200,100%%, %d%%)" % random.randint(49,51))

我尝试更改colormap参数,但颜色太亮了。 wordcloud = WordCloud(width=400, height=175,colormap = "plasma",scale = 2.0, max_words=150,normalize_plurals = False)我们如何为字云包定义我们自己的颜色选择或改变colormap参数的颜色亮度。

0 个答案:

没有答案