From 4dab6027cc9af7640a5403f6d8f77d1ffcae106c Mon Sep 17 00:00:00 2001 From: feiyun0112 Date: Fri, 16 Jul 2021 21:18:52 +0800 Subject: [PATCH] Update README.zh-cn.md --- 2-Regression/4-Logistic/translations/README.zh-cn.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/2-Regression/4-Logistic/translations/README.zh-cn.md b/2-Regression/4-Logistic/translations/README.zh-cn.md index 52453de5..b4397856 100644 --- a/2-Regression/4-Logistic/translations/README.zh-cn.md +++ b/2-Regression/4-Logistic/translations/README.zh-cn.md @@ -120,7 +120,7 @@ Seaborn提供了一些巧妙的方法来可视化你的数据。例如,你可 sns.swarmplot(x="Color", y="Item Size", data=new_pumpkins) ``` - ![分类散点图可视化数据](images/swarm.png) + ![分类散点图可视化数据](../images/swarm.png) ### 小提琴图 @@ -133,7 +133,7 @@ Seaborn提供了一些巧妙的方法来可视化你的数据。例如,你可 kind="violin", data=new_pumpkins) ``` - ![小提琴图](images/violin.png) + ![小提琴图](../images/violin.png) ✅ 尝试使用其他变量创建此图和其他Seaborn图。