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
... should yield the following postprocess pipeline:
{
percentage:new_column:'new_col'column:'bar'group_cols: ['foo']
}
{
formula:new_column:'new_col'# writes result inplaceformula:"new_col / 100"# We need to divide by 100 to get a result between 0 and 1 while the percentage step returns values between 0 and 100
}
Exemple 2: without groups and result in existing column
This 'percentage' step config in our VQB "language"...
{
name:'percentage'column:'bar'
}
... should yield the following postprocess pipeline:
{
percentage:column:'bar'
}
{
formula:new_column:'bar'# writes result inplaceformula:"bar / 100"# We need to divide by 100 to get a result between 0 and 1 while the percentage step returns values between 0 and 100
}
The text was updated successfully, but these errors were encountered:
Exemple 1: with groups and result in new column
This 'percentage' step config in our VQB "language"...
... should yield the following postprocess pipeline:
Exemple 2: without groups and result in existing column
This 'percentage' step config in our VQB "language"...
... should yield the following postprocess pipeline:
The text was updated successfully, but these errors were encountered: