From 31cc0b62ee82973a10516a04bd8ab6ee01a3b08d Mon Sep 17 00:00:00 2001 From: Fumito Hamamura Date: Sat, 23 Dec 2023 14:01:33 +0900 Subject: [PATCH] FIX: Remove %matplotlib notebook --- lifelib/projects/ifrs17sim/ifrs17sim_charts_baseline.ipynb | 3 --- lifelib/projects/ifrs17sim/ifrs17sim_charts_lapsescen.ipynb | 3 --- lifelib/projects/ifrs17sim/ifrs17sim_csm_waterfall.ipynb | 4 ---- 3 files changed, 10 deletions(-) diff --git a/lifelib/projects/ifrs17sim/ifrs17sim_charts_baseline.ipynb b/lifelib/projects/ifrs17sim/ifrs17sim_charts_baseline.ipynb index 83ad870..6c0c5a5 100644 --- a/lifelib/projects/ifrs17sim/ifrs17sim_charts_baseline.ipynb +++ b/lifelib/projects/ifrs17sim/ifrs17sim_charts_baseline.ipynb @@ -94,8 +94,6 @@ "source": [ "## Initial set-up\n", "\n", - "The first line `%matplotlib notebook`, is for specifying drawing mode.\n", - "\n", "The next few lines are import statements, by which functions defined in other modules become avaialbe in this script.\n", "\n", "`ifrs17sim` and `draw_charts` modules are in the project directory of this project. To see what fiels are in the project directory, select **Open** from the **File** menu in the tool bar above." @@ -107,7 +105,6 @@ "metadata": {}, "outputs": [], "source": [ - "%matplotlib notebook\n", "import pandas as pd\n", "import collections\n", "import matplotlib.pyplot as plt\n", diff --git a/lifelib/projects/ifrs17sim/ifrs17sim_charts_lapsescen.ipynb b/lifelib/projects/ifrs17sim/ifrs17sim_charts_lapsescen.ipynb index 514093f..fe873b6 100644 --- a/lifelib/projects/ifrs17sim/ifrs17sim_charts_lapsescen.ipynb +++ b/lifelib/projects/ifrs17sim/ifrs17sim_charts_lapsescen.ipynb @@ -97,8 +97,6 @@ "source": [ "## Initial set-up\n", "\n", - "The first line `%matplotlib notebook`, is for specifying drawing mode.\n", - "\n", "The next few lines are import statements, by which functions defined in other modules become avaialbe in this script.\n", "\n", "`ifrs17sim` and `draw_charts` modules are in the project directory of this project. To see what fiels are in the project directory, select **Open** from the **File** menu in the tool bar above." @@ -110,7 +108,6 @@ "metadata": {}, "outputs": [], "source": [ - "%matplotlib notebook\n", "import pandas as pd\n", "import collections\n", "import matplotlib.pyplot as plt\n", diff --git a/lifelib/projects/ifrs17sim/ifrs17sim_csm_waterfall.ipynb b/lifelib/projects/ifrs17sim/ifrs17sim_csm_waterfall.ipynb index ae2eb2e..5f222e5 100644 --- a/lifelib/projects/ifrs17sim/ifrs17sim_csm_waterfall.ipynb +++ b/lifelib/projects/ifrs17sim/ifrs17sim_csm_waterfall.ipynb @@ -90,7 +90,6 @@ "Below is the entire script of this example. The enire scipt is broken down to several parts in differenc cells, and each part is explained below. The pieces of code in cells below are executable one after another from the top.\n", "\n", "```python\n", - "%matplotlib notebook\n", "import collections\n", "import pandas as pd\n", "from draw_charts import draw_waterfall, get_waterfalldata\n", @@ -118,8 +117,6 @@ "source": [ "## Initial set-up\n", "\n", - "The first line `%matplotlib notebook`, is for specifying drawing mode.\n", - "\n", "The next few lines are import statements, by which functions defined in other modules become avaialbe in this script.\n", "\n", "`ifrs17sim` and `draw_charts` modules are in the project directory of this project. To see what fiels are in the project directory, select **Open** from the **File** menu in the tool bar above." @@ -131,7 +128,6 @@ "metadata": {}, "outputs": [], "source": [ - "%matplotlib notebook\n", "import collections\n", "import pandas as pd\n", "from draw_charts import draw_waterfall, get_waterfalldata"