-
Notifications
You must be signed in to change notification settings - Fork 1
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
implemented var and std #205
Conversation
@@ -150,6 +150,10 @@ impl PUPRelation { | |||
let one_col = format!("_ONE_{}", col_name); | |||
let sum_col = format!("_SUM_{}", col_name); | |||
let count_col = format!("_COUNT_{}", col_name); | |||
let square_col = format!("_SQUARE_{}", col_name); | |||
let one_square_col = format!("_ONE_{}", square_col); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pourquoi a-t-on besoin d'un one différent ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
idem pour count ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
parce que l'on veut deux counts bruités différents dans l'estimateur
let square_col = format!("_SQUARE_{}", col_name); | ||
let one_square_col = format!("_ONE_{}", square_col); | ||
let sum_square_col = format!("_SUM_{}", square_col); | ||
let count_square_col = format!("_COUNT_{}", square_col); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dis moi quand tu as pu supprimer cela
No description provided.