我想从我的 pandas Dataframe 创建多个图,如下所示:
dataset.head()
trip_id duration distance avg_speed avg_acc travel_mode
0 303633 1.0 42.74 0.00 70.46 foot
1 303637 30.0 521.07 1.43 27.86 car
2 303638 13.0 339.58 0.65 26.30 car
3 303642 12.0 459.94 0.00 78.67 car
4 303657 4.0 71.3 0.00 72.94 foot
该列travel_mode包含 5 种不同的运输方式:
dataset.travel_mode.unique()
array(['foot', 'car', 'bus', 'bike', 'metro'], dtype=object)
我想绘制每种旅行模式的duration, distance, avg_speed分布avg_acc。
col = ['duration', 'distance', 'avg_speed', 'avg_acc', 'travel_mode']
dataset[col].groupby('travel_mode').hist(bins=50, figsize=(6, 4))
在此处输入图像描述
数字的显示方式您无法分辨哪个数字是什么类型的交通工具。然后我尝试按偏度分布。
偏度分布:
l = dataset.columns.values
n_cols=4
n_rows =5
plt.figure(figsize=(3*n_cols,2*n_rows))
for i in range(0,len(l)):
plt.subplot(n_rows + 1,n_cols,i+1)
sns.distplot(dataset[l[i]],kde=True)
TypeError: unsupported operand type(s) for /: 'str' and 'int'
如何显示每种出行模式的标记分布,使出行模式成行,列显示 和 的duration, distance, avg_speed,
数字avg_acc
?
人到中年有点甜
www说
相关分类