执行 EDA

用 Python 分析 IoT 数据

Matthias Voppichler

IT Developer

绘制 DataFrame

df.plot(title="Environment")

绘制的数据集,杂乱

用 Python 分析 IoT 数据

折线图

df[["temperature", "humidity"]].plot(title="Environment")
plt.xlabel("Time")

仅温度与湿度的折线图

用 Python 分析 IoT 数据

次要 y 轴

plt.ylabel('Temperature')
df[["temperature", "pressure"]].plot(title="Environment", secondary_y="pressure")
plt.ylabel('Pressure')

压力与温度的图,压力在次要 y 轴

用 Python 分析 IoT 数据

直方图基础

直方图

用 Python 分析 IoT 数据

直方图

df.hist(bins=20)

多个直方图,展示数据分布

用 Python 分析 IoT 数据

Passons à la pratique !

用 Python 分析 IoT 数据

Preparing Video For Download...