Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
paucablop committed Feb 11, 2024
1 parent 63274fe commit 49a2a1d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion get-started/explore_our_exciting_datasets.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ from chemotools.datasets import load_fermentation_train
X_train, y_train = load_fermentation_train(set_output="polars")
```

{: .note}
{: .highlight}
> Polars is supported in ```chemotools```>=0.1.5

Expand All @@ -61,13 +61,15 @@ The test set takes you on a real-time adventure with over 1000 spectra collected
Ready for this real-time exploration? Load the test set like a pro:

- __Load as```pandas.DataFrame```__:

```python
from chemotools.datasets import load_fermentation_test

X_test, y_test = load_fermentation_test()
```

- __Load as```polars.DataFrame```__:

```python
from chemotools.datasets import load_fermentation_test

Expand All @@ -84,13 +86,15 @@ The Coffee Dataset invites you to embark on a journey through the world of coffe
Feeling the coffee buzz? You can load the Coffee Dataset with ease as a ```pandas.DataFrame``` or as a ```polars.DataFrame```.

- __Load as```pandas.DataFrame```__:

```python
from chemotools.datasets import load_coffee

spectra, labels = load_coffee()
```

- __Load as```polars.DataFrame```__:

```python
from chemotools.datasets import load_coffee

Expand Down

0 comments on commit 49a2a1d

Please sign in to comment.