Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Investigate: Normalization? #6

Open
thwllms opened this issue Sep 6, 2024 · 0 comments
Open

Investigate: Normalization? #6

thwllms opened this issue Sep 6, 2024 · 0 comments
Labels

Comments

@thwllms
Copy link
Contributor

thwllms commented Sep 6, 2024

Answer the question: does it makes sense to normalize hydrograph data?

For example, should all flow hydrographs be rescaled from 0.0 to 1.0 by dividing by the maximum flow?

flow_normalized = flow / max(flow)

Similarly, should all stage hydrographs be converted to rescaled relative depth hydrographs by subtracting the minimum stage, then dividing by the maximum relative depth?

depth = stage - min(stage)
depth_normalized = depth / max(depth)

Should we also be using a relative approach for flow?

flow_relative = flow - min(flow)
flow_relative_normalized = flow_relative / max(flow_relative)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant