update len in line 239

This commit is contained in:
root
2024-01-19 16:31:55 +08:00
parent 3400b6a3da
commit bcc21b5d36

View File

@@ -236,7 +236,7 @@ import matplotlib.pyplot as plt
# 数据准备
categories = ['Single', 'Multimer', 'Unknown']
counts = [88, 58, 0]
counts = [len(single), len(multimer), len(unknown)]
# 创建 seaborn 条形图
sns.set(style="whitegrid")