Heim  >  Artikel  >  Backend-Entwicklung  >  [Python-Tutorial] Zeichnen eines Geigenplots

[Python-Tutorial] Zeichnen eines Geigenplots

黄舟
黄舟Original
2017-02-07 16:13:047160Durchsuche

小提琴图(Violinplot)可以理解为箱图(Boxplot)加上密度图(Kdensity),本文简单介绍在Python中如何绘制该图,使用数据为Stata软件系统自带auto数据(已导出为CSV格式)。

导入命令

1)设置工作环境
%cd "F:\\Dropbox\\python"2)导入程序包import pandas as pd
import seaborn as sns
3)读取数据tips=pd.read_csv("stata_auto.csv")
4)定义并绘制图像
sns.set(style="whitegrid",palette="pastel",color_codes=ture)
sns.violinplot(x="rep78", y="mpg", data=tips, split=True,inner="quart")
sns.despine(left=True)

输出图像如下

[Python-Tutorial] Zeichnen eines Geigenplots

以上就是【Python教程】绘制小提琴图的内容,更多相关内容请关注PHP中文网(www.php.cn)!


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn