You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pyspi/calculator.py
+56-10Lines changed: 56 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@
8
8
9
9
# From this package
10
10
from .dataimportData
11
-
from .utilsimportconvert_mdf_to_ddf
11
+
from .utilsimportconvert_mdf_to_ddf, check_optional_deps
12
12
13
13
14
14
classCalculator:
@@ -31,15 +31,17 @@ class Calculator:
31
31
labels (array_like, optional):
32
32
Any set of strings by which you want to label the calculator. This can be useful later for classification purposes, defaults to None.
33
33
subset (str, optional):
34
-
A pre-configured subset of SPIs to use. Options are "all", "fast", "sonnet", "octaveless", or "fabfour", defaults to "all".
34
+
A pre-configured subset of SPIs to use. Options are "all", "fast", "sonnet", or "fabfour", defaults to "all".
35
35
configfile (str, optional):
36
36
The location of the YAML configuration file for a user-defined subset. See :ref:`Using a reduced SPI set`, defaults to :code:`'</path/to/pyspi>/pyspi/config.yaml'`
0 commit comments