You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By uncommenting these lines, we would expect that the metrics are made available to users. It would seem that the SQL being run in this case is not correctly computing the standard deviation of length and values.
You'll notice that queries fail due to the metric being calculated incorrectly.
There is also the potential that it works and there is some specific niche case where this was an issue, so this should be verified.
Additional context
To fix this issue, one simply needs to figure out the SQL required to calculate the numeric std dev and length std dev and replace the fields here. Then, uncomment the metric lines.
The text was updated successfully, but these errors were encountered:
Description
Numeric standard deviation and length standard deviation are not currently being calculated
https://github.com/monosidev/monosi/blob/master/src/ingestion/sources/base.py#L265-L275
Expected behavior
By uncommenting these lines, we would expect that the metrics are made available to users. It would seem that the SQL being run in this case is not correctly computing the standard deviation of length and values.
The current SQL is here:
Steps to reproduce
There is also the potential that it works and there is some specific niche case where this was an issue, so this should be verified.
Additional context
To fix this issue, one simply needs to figure out the SQL required to calculate the numeric std dev and length std dev and replace the fields here. Then, uncomment the metric lines.
The text was updated successfully, but these errors were encountered: