Skip to content

Commit

Permalink
Merge pull request #71 from ealcobaca/online-doc-fix
Browse files Browse the repository at this point in the history
Online doc fix
  • Loading branch information
ealcobaca committed Dec 19, 2019
2 parents bb56cdf + 6b360d7 commit 464d93b
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 6 deletions.
13 changes: 13 additions & 0 deletions docs/source/_static/theme_overrides.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/* override table width restrictions */
@media screen and (min-width: 767px) {

.wy-table-responsive table td {
/* !important prevents the common CSS stylesheets from overriding
this as on RTD they are loaded after this stylesheet */
white-space: normal !important;
}

.wy-table-responsive {
overflow: visible !important;
}
}
12 changes: 6 additions & 6 deletions examples/01_introductory_examples/plot_groups.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
# measures:

###############################################################################
# Extract all info-theo measures
# Extract all info-theory measures
mfe = MFE(groups=["info-theory"])
mfe.fit(X, y)
ft = mfe.extract()
Expand Down Expand Up @@ -109,7 +109,7 @@

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

###############################################################################
# Extract all relative landmarking measures
# Extract all subsampling landmarking measures
mfe = MFE(groups=["landmarking"], lm_sample_frac=0.7)
mfe.fit(X, y)
ft = mfe.extract()
Expand Down Expand Up @@ -196,7 +196,7 @@
# the examples density.

###############################################################################
# Extract all clustering based measures
# Extract all concept measures
mfe = MFE(groups=["concept"])
mfe.fit(X, y)
ft = mfe.extract()
Expand All @@ -210,7 +210,7 @@
#

###############################################################################
# Extract all clustering based measures
# Extract all itemset measures
mfe = MFE(groups=["itemset"])
mfe.fit(X, y)
ft = mfe.extract()
Expand All @@ -225,7 +225,7 @@
#

###############################################################################
# Extract all clustering based measures
# Extract all complexity measures
mfe = MFE(groups=["complexity"])
mfe.fit(X, y)
ft = mfe.extract()
Expand Down

0 comments on commit 464d93b

Please sign in to comment.