Skip to content

Commit

Permalink
Merge branch 'development' of github.com:fraunhoferportugal/tsfel int…
Browse files Browse the repository at this point in the history
…o development
  • Loading branch information
mbarandas committed Feb 14, 2021
2 parents 2db2b5c + a0bd752 commit 3037bed
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions tsfel/feature_extraction/calc_features.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def dataset_features_extractor(main_directory, feat_dict, verbose=1, **kwargs):
feat_dict : dict
Dictionary with features
verbose : int
Level of function communication
Verbosity mode. 0 = silent, 1 = progress bar.
(0 or 1 (Default))
\**kwargs:
See below:
Expand Down Expand Up @@ -61,11 +61,18 @@ def dataset_features_extractor(main_directory, feat_dict, verbose=1, **kwargs):
* *output_directory* (``String``) --
Output directory
(default: ``'output_directory', str(Path.home()) + '/tsfel_output'``)
* *features_path* (``string``) --
Directory of script with personal features
* *header_names* (``list or array``) --
Names of each column window
* *n_jobs* (``int``) --
The number of jobs to run in parallel. ``None`` means 1 unless in a :obj:`joblib.parallel_backend` context.
``-1`` means using all processors.
(default: ``None`` in Windows and ``-1`` for other systems)
Returns
-------
file
Expand Down Expand Up @@ -193,7 +200,7 @@ def time_series_features_extractor(dict_features, signal_windows, fs=None, verbo
fs : int or None
Sampling frequency
verbose : int
Level of function communication
Verbosity mode. 0 = silent, 1 = progress bar.
(0 or 1 (Default))
\**kwargs:
See below:
Expand All @@ -207,9 +214,15 @@ def time_series_features_extractor(dict_features, signal_windows, fs=None, verbo
* *features_path* (``string``) --
Directory of script with personal features
* *header_names* (``list or array``) --
Names of each column window
* *n_jobs* (``int``) --
The number of jobs to run in parallel. ``None`` means 1 unless in a :obj:`joblib.parallel_backend` context.
``-1`` means using all processors.
(default: ``None`` in Windows and ``-1`` for other systems)
Returns
-------
DataFrame
Expand Down

0 comments on commit 3037bed

Please sign in to comment.