small fixes

This commit is contained in:
2022-05-01 23:19:20 -07:00
parent 6904e7e894
commit 87de60c556
3 changed files with 7 additions and 3 deletions

View File

@@ -192,8 +192,8 @@ using LinearAlgebra
### `loop` Setup
To setup for the loop that processes all of the `stl` files a dataframe has to be initalized, and
the path to the folder containing all the `stl` files needs to be defined.
To set up for the loop that processes all the `stl` files a dataframe has to be initialized, and the
path to the folder containing all the `stl` files needs to be defined.
```{julia}
#| output: false
@@ -258,11 +258,13 @@ describe(df)
:::
Finally, the dataset can be saved to a `csv` file for Matlab to import.
```julia
CSV.write("scaled_dataset.csv", df)
```
Finally, the dataset can be saved to a `csv` file for Matlab to import.
---
## Gathering Data