From 4cada93bfa77a3dd34a0495c869d9fd1cf8daa53 Mon Sep 17 00:00:00 2001 From: yhjun1026 <460342015@qq.com> Date: Wed, 30 Aug 2023 15:06:06 +0800 Subject: [PATCH] feat(editor): ChatExcel MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🔥ChatExcel Mode Operation Manual --- pilot/commands/disply_type/show_chart_gen.py | 1 + 1 file changed, 1 insertion(+) diff --git a/pilot/commands/disply_type/show_chart_gen.py b/pilot/commands/disply_type/show_chart_gen.py index 3fe1df2eb..09d450d29 100644 --- a/pilot/commands/disply_type/show_chart_gen.py +++ b/pilot/commands/disply_type/show_chart_gen.py @@ -155,6 +155,7 @@ def response_bar_chart(speak: str, df: DataFrame) -> str: fig, ax = plt.subplots(figsize=(8, 5), dpi=100) + hue = None x,y, non_num_columns, num_colmns =data_pre_classification(df) if len(non_num_columns) >= 1: hue = non_num_columns[0]