可视化库Seaborn-整体布局风格

简介: 可视化库Seaborn-整体布局风格

导入库


import seaborn as sns
import numpy
import pandas as pd
import matplotlib.pyplot as plt
%matplotlib inline


写一个sinsin函数并用Matplotlib表示出来


def sinplot(flip = 1):
    x = numpy.linspace(0, 14, 100)
    for i in range(1, 7):
        plt.plot(x, numpy.sin(x + i * 0.5) * (7 - i) * flip)


调用函数sinplot()可以得到如下图:


0a2653c851af460fa595bd959398a8f1.png


将其设置为Seaborn风格


sns.set()
sinplot()


可得到如下图:


2d65d23f6d4748949b924e4057485923.png


在Seaborn库中有五种布局风格,分别是:darkgrid、whitegrid、dark、white、ticks


下面一一来展示它们

①darkgrid


#darkgrid
sns.set_style('darkgrid')
sinplot()


图像为:


6de278e6d6694ce5bb08e7e842b7e74b.png


②whitegrid


#whitegrid
sns.set_style('whitegrid')
sinplot()


图像为:


8ec4f2997fb246878c34ecd6d122b7c6.png


#whitegrid
sns.set_style('whitegrid')
boxdata = numpy.random.normal(size=(20, 6)) + numpy.arange(6) / 2
sns.boxplot(data = boxdata)


图像为:


12c3b7f3f8814309a195c64f051d4445.png


③dark


#dark
sns.set_style('dark')
sinplot()


图像为:


34e8d716411043c08c7ffba9fbba23de.png


④white


#white
sns.set_style('white')
sinplot()


图像为:


92ba0822ed0b46e1ae72df8a17d3a45b.png


⑤ticks


#ticks(有刻度)
sns.set_style('ticks')
sinplot()


图像为:


d79b274929334152a6d38be91e2d1be3.png


如果要除去xy轴以外的边线,可以通过如下代码实现:


#除去xy轴以外的边线
sinplot()
sns.despine()


图像为:


dfc80ca9d8004e6c9ddc00e8448ffc6a.png

相关文章
|
11天前
|
XML JSON 数据库
Python的标准库
Python的标准库
127 77
|
25天前
|
机器学习/深度学习 算法 数据挖掘
数据分析的 10 个最佳 Python 库
数据分析的 10 个最佳 Python 库
76 4
数据分析的 10 个最佳 Python 库
|
9天前
|
数据可视化 DataX Python
Seaborn 教程-绘图函数
Seaborn 教程-绘图函数
40 8
|
12天前
|
XML JSON 数据库
Python的标准库
Python的标准库
41 11
|
9天前
Seaborn 教程-主题(Theme)
Seaborn 教程-主题(Theme)
29 7
|
25天前
|
人工智能 API 开发工具
aisuite:吴恩达发布开源Python库,一个接口调用多个大模型
吴恩达发布的开源Python库aisuite,提供了一个统一的接口来调用多个大型语言模型(LLM)服务。支持包括OpenAI、Anthropic、Azure等在内的11个模型平台,简化了多模型管理和测试的工作,促进了人工智能技术的应用和发展。
100 1
aisuite:吴恩达发布开源Python库,一个接口调用多个大模型
|
9天前
|
Python
Seaborn 教程-模板(Context)
Seaborn 教程-模板(Context)
30 4
|
9天前
|
数据可视化 Python
Seaborn 教程
Seaborn 教程
25 5
|
12天前
|
数据可视化 Python
以下是一些常用的图表类型及其Python代码示例,使用Matplotlib和Seaborn库。
通过这些思维导图和分析说明表,您可以更直观地理解和选择适合的数据可视化图表类型,帮助更有效地展示和分析数据。
54 8
|
1月前
|
XML 存储 数据库
Python中的xmltodict库
xmltodict是Python中用于处理XML数据的强大库,可将XML数据与Python字典相互转换,适用于Web服务、配置文件读取及数据转换等场景。通过`parse`和`unparse`函数,轻松实现XML与字典间的转换,支持复杂结构和属性处理,并能有效管理错误。此外,还提供了实战案例,展示如何从XML配置文件中读取数据库连接信息并使用。
Python中的xmltodict库