Skip to content

Commit 56b393c

Browse files
authored
Merge pull request #71 from ealcobaca/online-doc-fix
Online doc fix
2 parents 9a425f1 + a51d0d1 commit 56b393c

File tree

2 files changed

+19
-6
lines changed

2 files changed

+19
-6
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/* override table width restrictions */
2+
@media screen and (min-width: 767px) {
3+
4+
.wy-table-responsive table td {
5+
/* !important prevents the common CSS stylesheets from overriding
6+
this as on RTD they are loaded after this stylesheet */
7+
white-space: normal !important;
8+
}
9+
10+
.wy-table-responsive {
11+
overflow: visible !important;
12+
}
13+
}

examples/01_introductory_examples/plot_groups.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
# measures:
7777

7878
###############################################################################
79-
# Extract all info-theo measures
79+
# Extract all info-theory measures
8080
mfe = MFE(groups=["info-theory"])
8181
mfe.fit(X, y)
8282
ft = mfe.extract()
@@ -109,7 +109,7 @@
109109

110110
###############################################################################
111111
# Extract only two model-based measures
112-
mfe = MFE(features=["leaves", "nodel"])
112+
mfe = MFE(features=["leaves", "nodes"])
113113
mfe.fit(X, y)
114114
ft = mfe.extract()
115115
print("\n".join("{:50} {:30}".format(x, y) for x, y in zip(ft[0], ft[1])))
@@ -167,7 +167,7 @@
167167
# dataset.
168168

169169
###############################################################################
170-
# Extract all relative landmarking measures
170+
# Extract all subsampling landmarking measures
171171
mfe = MFE(groups=["landmarking"], lm_sample_frac=0.7)
172172
mfe.fit(X, y)
173173
ft = mfe.extract()
@@ -196,7 +196,7 @@
196196
# the examples density.
197197

198198
###############################################################################
199-
# Extract all clustering based measures
199+
# Extract all concept measures
200200
mfe = MFE(groups=["concept"])
201201
mfe.fit(X, y)
202202
ft = mfe.extract()
@@ -210,7 +210,7 @@
210210
#
211211

212212
###############################################################################
213-
# Extract all clustering based measures
213+
# Extract all itemset measures
214214
mfe = MFE(groups=["itemset"])
215215
mfe.fit(X, y)
216216
ft = mfe.extract()
@@ -225,7 +225,7 @@
225225
#
226226

227227
###############################################################################
228-
# Extract all clustering based measures
228+
# Extract all complexity measures
229229
mfe = MFE(groups=["complexity"])
230230
mfe.fit(X, y)
231231
ft = mfe.extract()

0 commit comments

Comments
 (0)