python数据分析绘制热力图
时间: 2024-06-17 08:00:37 浏览: 208
基于Python的热力图生成
Python数据分析绘制热力图可以使用多种库,常用的有matplotlib和seaborn。
使用matplotlib库:
首先导入库:
```python
import matplotlib.pyplot as plt
import numpy as np
```
生成数据:
```python
x = np.random.rand(10, 10)
```
绘制热力图:
```python
plt.imshow(x, cmap='hot', interpolation='nearest')
plt.colorbar()
plt.show()
```
使用seaborn库:
首先导入库:
```python
import seaborn as sns
```
生成数据:
```python
x = np.random.rand(10, 10)
```
绘制热力图:
```python
sns.heatmap(x, cmap='hot')
plt.show()
```
阅读全文