Skip to content

Commit 6a11d49

Browse files
authored
Merge pull request #13 from augustebaum/patch-1
DOC Fix documentation link in Readme
2 parents fdd07b0 + 63ccd2e commit 6a11d49

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
## What does `scikit-playtime` do?
66

7-
I was wondering if there might be an easier way to construct scikit-learn pipelines. Don't get me wrong, scikit-learn is amazing when you want elaborate pipelines (exibit A, exibit B) but maybe there is also a place for something more lightweight and playful. This library is all about exploring that.
7+
I was wondering if there might be an easier way to construct scikit-learn pipelines. Don't get me wrong, scikit-learn is amazing when you want elaborate pipelines (exhibit A, exhibit B) but maybe there is also a place for something more lightweight and playful. This library is all about exploring that.
88

99
Imagine that you are dealing with the titanic dataset.
1010

@@ -55,7 +55,7 @@ from playtime import feats, onehot
5555
formula = feats("age", "fare", "sibsp", "parch") + onehot("sex", "pclass")
5656
```
5757

58-
This `forumla` object is just an object that can accumulate components.
58+
This `formula` object is just an object that can accumulate components.
5959

6060
```python
6161
# This object is a scikit-learn pipeline but with operator support!
@@ -66,7 +66,7 @@ formula
6666

6767
It's pretty much the same pipeline as before, but it's a lot easier to go ahead and declare. You're mostly dealing with column names and how to encode them, instead of thinking about how scikit-learn constructs a pipeline.
6868

69-
This is what `scikit-playtime` is all about, but this is just the start of what it can do. If that sounds interest you can read more on the [documentation page](https://koaning.github.io/playtime/).
69+
This is what `scikit-playtime` is all about, but this is just the start of what it can do. If that sounds interest you can read more on the [documentation page](https://koaning.github.io/scikit-playtime/).
7070

7171
Alternative you may also explore this tool by installing it via:
7272

0 commit comments

Comments
 (0)