generated from entelecheia/hyperfast-python-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(datasets): add aggregate, basic and reshape classes, rename tran…
…sform to combine, process to plot, filter to slice
- Loading branch information
1 parent
177fa5f
commit 142c74a
Showing
6 changed files
with
72 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
""" | ||
This module contains the class for aggregating datasets. | ||
""" | ||
from hyfi.utils.logging import LOGGING | ||
|
||
logger = LOGGING.getLogger(__name__) | ||
|
||
|
||
class DSAggregate: | ||
def __init__(self): | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
""" | ||
This file contains the basic dataset functions. | ||
""" | ||
from hyfi.utils.logging import LOGGING | ||
|
||
logger = LOGGING.getLogger(__name__) | ||
|
||
|
||
class DSBasic: | ||
def __init__(self): | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 4 additions & 1 deletion
5
src/hyfi/utils/datasets/process.py → src/hyfi/utils/datasets/plot.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
""" | ||
Plotting functions for datasets. | ||
""" | ||
from hyfi.utils.logging import LOGGING | ||
|
||
logger = LOGGING.getLogger(__name__) | ||
|
||
|
||
class DSProcess: | ||
class DSPlot: | ||
def __init__(self): | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
""" | ||
This module contains the class for reshaping the dataset. Pivot, melt, etc. | ||
""" | ||
from hyfi.utils.logging import LOGGING | ||
|
||
logger = LOGGING.getLogger(__name__) | ||
|
||
|
||
class DSReshape: | ||
def __init__(self): | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters