
数据分析
文章平均质量分 93
BRYTLEVSON
这个作者很懒,什么都没留下…
展开
-
Python员工离职数据分析
Python员工离职数据分析import pandas as pdimport seaborn as snsimport matplotlib.pyplot as pltimport warningswarnings.filterwarnings('ignore')# 数据全显示pd.set_option('display.max_columns', None)# 颜色colors = sns.color_palette()# 数据精度pd.set_option('precision原创 2021-03-18 17:39:56 · 4337 阅读 · 1 评论 -
女性服装数据分析(电商数据)版本1
女性服装数据分析(电商数据)import pandas as pdimport numpy as npimport matplotlib.pyplot as pltimport seaborn as snscolor = sns.color_palette()data = pd.read_csv('Womens_Clothing.csv')# 查看数据结构data Unnamed: 0 Clothing ID Ag原创 2020-06-28 21:23:21 · 5532 阅读 · 1 评论 -
关于红酒品质的python数据分析
import pandas as pdimport numpy as npimport matplotlib.pyplot as pltimport seaborn as sns# 颜色color = sns.color_palette()print(color)# 数据精度pd.set_option('precision', 3)[(0.8862745098039215, 0.2901960784313726, 0.2), (0.20392156862745098, 0.541176原创 2020-05-09 15:04:12 · 10993 阅读 · 2 评论 -
Seaborn学习(一)------- 构建结构化多绘图网格(FacetGrid()、map())详解
Seaborn学习(一)------- 构建结构化多绘图网格(FacetGrid()、map())详解原创 原文链接:https://blog.youkuaiyun.com/weixin_42398658/article/details/82960379 在探索中等维数据时,一种有用的方法是在数据集的不同子集上绘制同一图的多个实例。这种技术有时被称为“格子”或“格子”绘图,它与“小倍数”的概念有关。它...转载 2020-04-01 21:05:17 · 1964 阅读 · 0 评论 -
解决 ‘`bins` must increase monotonically, when an array‘) ValueError: `bins` must increase monotoni
解决python 使用matplotlib绘制直方图的时候报错问题 ’bins must increase monotonically, when an array’) ValueError: bins must increase monotoni绘制一个很简单的直方图是,报错了,但是以前经常这样写没有报错,今天不知道怎么解决这个错误,错误的意识就是 bins 要自增长看到这个错...原创 2019-12-29 11:01:46 · 18228 阅读 · 0 评论