From 3571cd95b11b54fc4493c2cd1fef741415a07f09 Mon Sep 17 00:00:00 2001 From: cerlymarco <36955807+cerlymarco@users.noreply.github.com> Date: Mon, 24 Aug 2020 01:48:41 +0200 Subject: [PATCH] Release --- notebooks/Basic Smoothing.ipynb | 18 +++++++++--------- notebooks/Sinusoidal Smoothing.ipynb | 22 +++++++++++----------- notebooks/Sliding Smoothing.ipynb | 2 +- 3 files changed, 21 insertions(+), 21 deletions(-) diff --git a/notebooks/Basic Smoothing.ipynb b/notebooks/Basic Smoothing.ipynb index 2dafd42..9447ad0 100644 --- a/notebooks/Basic Smoothing.ipynb +++ b/notebooks/Basic Smoothing.ipynb @@ -9,7 +9,7 @@ "import numpy as np\n", "import matplotlib.pyplot as plt\n", "\n", - "from tsmoothie.utils.utils_func import sim_randomwalk\n", + "from tsmoothie.utils_func import sim_randomwalk\n", "from tsmoothie.smoother import *" ] }, @@ -49,7 +49,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 4, @@ -100,7 +100,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 6, @@ -151,7 +151,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 8, @@ -202,7 +202,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 10, @@ -253,7 +253,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 12, @@ -304,7 +304,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 14, @@ -355,7 +355,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 16, @@ -407,7 +407,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 18, diff --git a/notebooks/Sinusoidal Smoothing.ipynb b/notebooks/Sinusoidal Smoothing.ipynb index e774fa9..1623ed3 100644 --- a/notebooks/Sinusoidal Smoothing.ipynb +++ b/notebooks/Sinusoidal Smoothing.ipynb @@ -9,7 +9,7 @@ "import numpy as np\n", "import matplotlib.pyplot as plt\n", "\n", - "from tsmoothie.utils.utils_func import sim_seasonal_data\n", + "from tsmoothie.utils_func import sim_seasonal_data\n", "from tsmoothie.smoother import *" ] }, @@ -56,7 +56,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 4, @@ -107,7 +107,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 6, @@ -158,7 +158,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 8, @@ -209,7 +209,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 10, @@ -262,7 +262,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 12, @@ -339,7 +339,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 15, @@ -390,7 +390,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 17, @@ -441,7 +441,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 19, @@ -492,7 +492,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 21, @@ -545,7 +545,7 @@ { "data": { "text/plain": [ - "" + "" ] }, "execution_count": 23, diff --git a/notebooks/Sliding Smoothing.ipynb b/notebooks/Sliding Smoothing.ipynb index dcf2fc9..c66a11c 100644 --- a/notebooks/Sliding Smoothing.ipynb +++ b/notebooks/Sliding Smoothing.ipynb @@ -9,7 +9,7 @@ "import numpy as np\n", "import matplotlib.pyplot as plt\n", "\n", - "from tsmoothie.utils.utils_func import sim_seasonal_data\n", + "from tsmoothie.utils_func import sim_seasonal_data\n", "from tsmoothie.smoother import *" ] },