Skip to content

Commit

Permalink
update fig links
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoalopez committed May 4, 2020
1 parent bc40078 commit 55ddcde
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DOCS/_describe.md
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions DOCS/_first_steps.md
Expand Up @@ -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:

Expand All @@ -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.

Expand Down

0 comments on commit 55ddcde

Please sign in to comment.