-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #216 from NREL/qdm_reorganizing
Reorganizing QDM related methods
- Loading branch information
Showing
6 changed files
with
620 additions
and
568 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,18 @@ | ||
# -*- coding: utf-8 -*- | ||
"""Bias calculation and correction modules.""" | ||
|
||
from .bias_transforms import (global_linear_bc, local_linear_bc, | ||
monthly_local_linear_bc) | ||
local_qdm_bc, monthly_local_linear_bc) | ||
from .bias_calc import (LinearCorrection, MonthlyLinearCorrection, | ||
QuantileDeltaMappingCorrection, | ||
SkillAssessment) | ||
from .qdm import QuantileDeltaMappingCorrection | ||
|
||
__all__ = [ | ||
"global_linear_bc", | ||
"local_linear_bc", | ||
"local_qdm_bc", | ||
"monthly_local_linear_bc", | ||
"LinearCorrection", | ||
"MonthlyLinearCorrection", | ||
"QuantileDeltaMappingCorrection", | ||
"SkillAssessment", | ||
] |
Oops, something went wrong.