Skip to content

Commit 868255d

Browse files
committed
Pushing the docs to dev/ for branch: main, commit 263181a96f363caf74bb0f5ca7442f2e6107ecd2
1 parent 76998b0 commit 868255d

File tree

1,224 files changed

+4218
-4218
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,224 files changed

+4218
-4218
lines changed
Binary file not shown.
Binary file not shown.

dev/_downloads/8ed2480d8058dc8515097893b64d815b/plot_permutation_tests_for_classification.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
"cell_type": "markdown",
5252
"metadata": {},
5353
"source": [
54-
"We will also generate some random feature data (i.e., 2200 features),\nuncorrelated with the class labels in the iris dataset.\n\n"
54+
"We will also generate some random feature data (i.e., 20 features),\nuncorrelated with the class labels in the iris dataset.\n\n"
5555
]
5656
},
5757
{
@@ -62,7 +62,7 @@
6262
},
6363
"outputs": [],
6464
"source": [
65-
"import numpy as np\n\nn_uncorrelated_features = 2200\nrng = np.random.RandomState(seed=0)\n# Use same number of samples as in iris and 2200 features\nX_rand = rng.normal(size=(X.shape[0], n_uncorrelated_features))"
65+
"import numpy as np\n\nn_uncorrelated_features = 20\nrng = np.random.RandomState(seed=0)\n# Use same number of samples as in iris and 20 features\nX_rand = rng.normal(size=(X.shape[0], n_uncorrelated_features))"
6666
]
6767
},
6868
{

dev/_downloads/be7fb5ee9d7dc0c4fb277110eef3566a/plot_permutation_tests_for_classification.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@
2727
y = iris.target
2828

2929
# %%
30-
# We will also generate some random feature data (i.e., 2200 features),
30+
# We will also generate some random feature data (i.e., 20 features),
3131
# uncorrelated with the class labels in the iris dataset.
3232

3333
import numpy as np
3434

35-
n_uncorrelated_features = 2200
35+
n_uncorrelated_features = 20
3636
rng = np.random.RandomState(seed=0)
37-
# Use same number of samples as in iris and 2200 features
37+
# Use same number of samples as in iris and 20 features
3838
X_rand = rng.normal(size=(X.shape[0], n_uncorrelated_features))
3939

4040
# %%

0 commit comments

Comments
 (0)