Skip to content
This repository was archived by the owner on Dec 11, 2022. It is now read-only.

Commit 0a99946

Browse files
committed
🧑‍🏫 fix transform
1 parent e983b59 commit 0a99946

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/src/examples/pca.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ layers = convert.(
2424
# fit pca and project to a new set of layers
2525

2626
pca = fit(PCA, layers)
27-
newlayers = SimpleSDMLayers.transform(pca, layers)
27+
newlayers = transform(pca, layers)
2828

2929
# plot them
3030

@@ -46,7 +46,7 @@ plot(plot.(wlayers)...)
4646
# Now we call methods just as in `MultivariateStats`
4747

4848
w = fit(Whitening, wlayers)
49-
newlayers = SimpleSDMLayers.transform(w, wlayers)
49+
newlayers = transform(w, wlayers)
5050

5151

5252
# and plot the layers without covar

0 commit comments

Comments
 (0)