sns.set(style=,rc=)
style 五种主题风格:
darkgrid
whitegrid
dark
white
ticks (设置刻度)
调色板 默认风格palette=sns.color_palette(n_colors=18) sns.palplot(palette) 12
# palette=sns.color_palette(palette='hls',_colors=5) palette=sns.hls_palette(n_colors=18,l=0.5,h=0.1,s=0.7) sns.palplot(palette) 123
palette=sns.color_palette('Paired',18) sns.palplot(palette) 12
####xkcd内置字典颜色
#xkcd:用字典预定义了常用的954中颜色,而且他是预存了的 color=['pale red','apple green','orange'] sns.palplot(sns.xkcd_palette(color)) 123
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-dfzwGFDr-1580903657099)(https://upload-images.jianshu.io/upload_images/21117980-0a2d844abce6362b?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)]
####单色渐变
#单色渐变 palette=sns.color_palette('Greens_r',n_colors=18) #_r ——>由深到浅 sns.palplot(palette) 1234
有需要的朋友可以搜索微信公众号:【知音库】
同时也是为了鼓励自己,坚持写笔记,希望可以共同进步。