From bdf023e9c7c5f9efe304dc0fe3b133108ae8f91f Mon Sep 17 00:00:00 2001 From: Ty Balduf <35307473+TyBalduf@users.noreply.github.com> Date: Wed, 17 Jun 2020 15:48:37 -0500 Subject: [PATCH] Replaced sns.tsplot with sns.lineplot tsplot has been removed from seaborn as of version 0.10.0. Lineplot is the recommend function to use as its replacement. --- index.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.ipynb b/index.ipynb index f1c7a47..83a639c 100644 --- a/index.ipynb +++ b/index.ipynb @@ -1491,7 +1491,7 @@ "source": [ "x = random.randn(10,500)\n", "x = gaussian_filter(x, [0, 10])\n", - "sns.tsplot(x, err_style='unit_traces');" + "sns.lineplot(data=x.T,dashes=False,legend=None);" ] }, { -- GitLab