From 55ddcde8cb1beb44cb719db6d81c9528c5c21a2f Mon Sep 17 00:00:00 2001 From: "Marco A. Lopez-Sanchez" Date: Mon, 4 May 2020 13:28:47 +0200 Subject: [PATCH] update fig links --- DOCS/_describe.md | 2 +- DOCS/_first_steps.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/DOCS/_describe.md b/DOCS/_describe.md index 2352e4a..3f200a5 100644 --- a/DOCS/_describe.md +++ b/DOCS/_describe.md @@ -12,7 +12,7 @@ dataset['diameters'] = 2 * np.sqrt(dataset['Area'] / np.pi) dataset.head() ``` -![](https://github.com/marcoalopez/GrainSizeTools/blob/master/FIGURES/dataframe_newcol.png?raw=true) +![](https://github.com/marcoalopez/GrainSizeTools/blob/master/FIGURES/dataframe_output_newcol.png?raw=true) ```python # Set the population properties for the toy dataset diff --git a/DOCS/_first_steps.md b/DOCS/_first_steps.md index ed2de19..5313462 100644 --- a/DOCS/_first_steps.md +++ b/DOCS/_first_steps.md @@ -233,7 +233,7 @@ dataset = dataset.drop(' ', axis=1) dataset.head(3) ``` -![](https://github.com/marcoalopez/GrainSizeTools/blob/master/FIGURES/dataframe_head3.png?raw=true) +![](https://github.com/marcoalopez/GrainSizeTools/blob/master/FIGURES/dataframe_output_head3.png?raw=true) If you want to remove more than one column pass a list of columns instead as in the example below: @@ -256,7 +256,7 @@ dataset['diameters'] = 2 * np.sqrt(dataset['Area'] / np.pi) dataset.head() ``` -![](https://github.com/marcoalopez/GrainSizeTools/blob/master/FIGURES/dataframe_newcol.png?raw=true) +![](https://github.com/marcoalopez/GrainSizeTools/blob/master/FIGURES/dataframe_output_newcol.png?raw=true) You can see a new column named diameters.