From bcc21b5d36cae2d453d540ec2bb384f72366c359 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 19 Jan 2024 16:31:55 +0800 Subject: [PATCH] update len in line 239 --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index 84be3e3..6eebd8c 100644 --- a/test.py +++ b/test.py @@ -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")