-
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.
Added data validation file, changed some of the parameters in config.…
…yaml
- Loading branch information
1 parent
57cbd0f
commit 352efec
Showing
4 changed files
with
44 additions
and
22 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
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
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
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,13 @@ | ||
import json | ||
from itertools import chain | ||
|
||
from falconscoutcore.data_validation.base_data_val import BaseDataValidation | ||
from falconscoutcore.data_validation.config.constants import ChargedUp | ||
from falconscoutcore.data_validation.config.utils import (ErrorType, get_intersection_of_n_series) | ||
from numpy import logical_or | ||
from pandas import DataFrame, Series, concat, isna, notna | ||
|
||
|
||
class DataValidation2025(BaseDataValidation): | ||
def __init__(self, path_to_config: str = "config.yaml"): | ||
super().__init__(path_to_config) |