现有四种细胞各自的数量,使用python语言如何做这样一张图:横轴分布四种细胞,纵轴表示数量,四种细胞的数量按对应值分别以圆点的形式标记在坐标系中,每个圆点与横轴间有一个垂线,并且圆点大小可通过修改参数控制。代码怎么写?
时间: 2024-05-25 10:14:28 浏览: 143
Automatic-Cell-Counter:使用Python的自动细胞计数器
可以使用matplotlib库来绘制这张图,以下是一个示例代码:
```python
import matplotlib.pyplot as plt
# 四种细胞的数量
cell_counts = [10, 20, 15, 5]
# 每个圆点的大小
dot_size = 100
# 绘制图形
fig, ax = plt.subplots()
ax.scatter(range(4), cell_counts, s=dot_size)
# 添加垂线和标签
for i in range(4):
ax.plot([i, i], [0, cell_counts[i]], 'k--')
ax.text(i, -3, f"Cell {i+1}", ha='center')
# 设置坐标轴标签
ax.set_xlabel('Cell')
ax.set_ylabel('Count')
plt.show()
```
你可以根据自己的需求修改圆点大小、垂线样式、标签内容等参数。运行代码后,会显示出一张类似于下图的图表:
![cell_count_plot.png](https://i.loli.net/2021/09/29/WQzBlbXxO9fK8h4.png)
阅读全文