Community Spring Cleaning week is here! Join your fellow Maveryx in digging through your old posts and marking comments on them as solved. Learn more here!

Alteryx Designer Desktop Discussions

Find answers, ask questions, and share expertise about Alteryx Designer Desktop and Intelligence Suite.
SOLVED

Alteryx Odd Behavior

Pasha_Maleknia
5 - Atom

Hello everyone,

 

I have been pretty odd behavior from Alteryx on rounding numbers. At first I thought there was something wrong with the calculation, but apparently it is a defect. So I wanted to share this with the community to get feedback. I tested it on version 9.5, 10.5 and 11

 

so if you take an average of two numbers of (100, and 124.83) it will end up in 112.415. You can either do it manually or use function "average". 

Now when you try to round the result to hundredth with round ( [X] , 0.01) it will end up at 112.41 instead of 112.42

 

Interesting part is if you code the number 112.415 manually then the result of rounding will be 112.42

 

It gets more interesting when you take the average of 100 and 224.83 instead of 124.83. The result of course is 162.415 and if we round it this time it will end up as 162.42. in other words "whole number" is affecting the decimal rounding which does not make sense to me.

 

I guess this should be probably a defect on the way that numbers are restored.

 

 

Fun fact: we found this issue on Halloween !

8 REPLIES 8
KevinP
Alteryx Alumni (Retired)

@Pasha_Maleknia This isn't a bug, but rather a limitation with how computers store and perform math operations on floating point numbers. Let's consider the number '1.025'. Due to limitations in precision with variable storage and the conversion to binary when this value is stored as a double the number actually gets stored as '1.024999999999999911182158029987476766109466552734375'. As such when rounded to 2 decimal places the number would round to 1.02 where you may expect it to round to 1.03. This is because computers can't store floating point values with exact precision, and some fractions are infinite in length (1/3 for example is 0.33333... repeating). Because of finite storage space if the value doesn't convert to an exact binary number or if it exceeds storage available for the variable it gets rounded. There is an excellent article here on the Community written by one of our developers explaining this in detail. I have included a link for that article below along with some third party article that go into more of the math behind the behavior.

 

Community Article:

Floating point numbers are surprisingly strange

 

Additional reading:

Why 0.1 Does Not Exist In Floating-Point

Inconsistent Rounding of Printed Floating-Point Numbers

 

Stack exchange discussion with a good simple explanation:

What causes floating point rounding errors

TeePee
8 - Asteroid

I'm having a similar issue with rounding. (Sample workflow attached and images pasted below)

 

There doesn't seem to be consistency in how decimal numbers ending in a 5 are rounded.  In my test, two numbers were incorrectly rounded down and one was correctly rounded up.  All us end-users expect to see "5 or more, raise the score. 4 or lesslet it rest."  

 

I understand the explanation, but my question is, regardless of the why, how do we get Alteryx to do what we expect it to do! :)  Why is it that Excel can handle rounding? Has anyone discovered a workaround they'd be prepared to share?  

 

Many thanks in advance 

 

 

Rows 2, 5 and 7 need to roundupRows 2, 5 and 7 need to roundupCalculation to round to 1 decimal placeCalculation to round to 1 decimal placeRows 2 and 5 are wrong; row 7 is rightRows 2 and 5 are wrong; row 7 is right

 

 

KevinP
Alteryx Alumni (Retired)

@TeePee The rounding isn't inconsistent and it also isn't incorrect. As I previously stated this comes down to how fractional number are stored in binary by computers. For details on how this works I highly recommend reading the resources I linked to in my previous post.

 

As for your specific example none of the rounding you performed is wrong. It just wasn't what you expected based on the input and because you aren't considering the real value of the number as stored by the computer. For example 206.95 when stored as a double in binary is actually '206.94999999999998863131622783839702606201171875' and when round at the first decimal place 206.94 becomes 206.9. 1.45 when stored as a double is actually '1.4499999999999999555910790149937383830547332763671875' which rounds as you saw to 1.4, and 1.55 when stored as a double is '1.5500000000000000444089209850062616169452667236328125' which rounds to 1.6. So the numbers are rounding exactly as you are telling them to in your formula, its just the that underlying number being used by the formula isn't what you expect because the number can't be stored exactly by the computer. As such the computer stores the number as the closest possible approximation that fits into the designated memory space. Sometimes this value is slight smaller than the actual number and sometimes it slightly larger.

 

To get the results you want/expect you need to be more precise with your rounding so that the stored value is greater than 206.950 when your do your final rounding. You can easily do this by rounding the number multiple time with multiple decimal places of precision prior to rounding at the single decimal place you want for your end result. See the screenshot below for an example.

 

2018-02-28_8-48-19.png

 

 

If you are curious what a specific decimal value translates to when stored as a float or double by a computer you can use this link to find the actual value.

 

Floating Point Converter

Mikey67
5 - Atom

KevinP

 

While I did not read those articles, your explanations don't seem to address the bottom-line issue of this thread.  Using Pasha_Maleknia's example above, the average of the numbers 100 and 124.83 rounded to two decimal places using mathematical rounding rules is 112.42.  The Excel formula "=ROUND(AVERAGE(100,124.83),2)" returns the correct result 112.42; however, the Alteryx formula "ROUND(AVERAGE(100,124.83),0.01)" return the incorrect result of 112.41.  It doesn't matter why Alteryx returns what it returns -- it only matters that Alteryx is returning the wrong value.

 

If Microsoft can get Excel to return the correct result, why can't Alteryx?

jcalvo92
7 - Meteor

Another example here. 

 

We have two fields, 'IMP_PRIM_TOT' and 'P_TOTAL'. They are both prices of a service, but IMP_PRIM_TOT would count '517.05€' as '51705' and P_TOTAL would count it as '517.05'. About half the times they are the same, and I am very interested in being able to check this with Alteryx. 

 

But it is not that easy. If I get 517.05 multiplied by 100 and subtracted to 51705, sometimes I get 0, but other times I get 'close to zero' and Alteryx see a difference that is not there. 

 

1.png

Wrong values can be identified by the red dot, with a ''the display value was rounded to 6 decimal places for clarity" message, explaining why 0 is not 0.

 

Adding a filter at the end with Round(value, 1) gives us the number or miscalculations. In this case 2380 out of 16684 (15%).

 

2.png 

Also, it is not reproductible. If you pick the wrong cases, move them to other workflow and run it, you will not get the error in all of them. And in a small sample you will get no errors. 

 

Big bug here. It is the result of a multiplication, and it happens randomly.

 

The solution I found for this situation was to change the type to FixedDecimal with 0 decimals.

 

3.png

 

You will still have to deal with '0' versus '-0' though

 

4.png

 

Keep this in mind when you are comparing numeric values. 

 

Cheers

CLindsay
6 - Meteoroid

I have been having a lot of issues with rounding. These are errors that we cannot afford to have as the workflows we built are used to audit billed amounts and must match the way our billing system calculates prorations. Initially we tried the round functions and then the round(round functions, but in the end we decided to manually round. For those that need Alteryx to round exactly as you intend on a calculated number I highly recommend a manual formula. 

 

Example;

 

We bill a monthly rate of 717.21. However, in the month of March the contract came to an end mid month so we only want to bill 13 days. 

 

so we have the first calculation of 717.21/31 = 23.135806 (we go to 6 decimals to match our billing system). 

the second calculation is 23.135806 * 13 = 300.765478

 

Now comes the fun part, we take 300.765478 and Parse the data to reflect 300.76

*RegEx  is (.*\.\d{2}) 

 

we also Parse the same number to pull out the 3rd decimal digit. so in this case I want to pull the '5' out 300.765478

*RegEx is \d*\.\d{2}(\d{1})\d*

 

Then we simply use a formula tool to determine if the 3rd digit is >= 5 and if so we add .01 so in this case we would have an ending result of 300.77

 

example of formula tool:

if [3rd decimal place] >= 5 then ([300.76] + .01) else [300.76] endif

 

 

 

We have had great success with this method applied to millions of different calculations over the last few weeks.

Tim_Slade
6 - Meteoroid

Coming late to the party.

 

I've just run in to this issue as well.

 

I am unhappy with the response that 'floating point is hard'.

 

To solve this issue in my workflow dealing with financial data, I resorted to using the Python tool, in order to use Pandas to calculate the amount correctly.

 

The Python, for those who may wish to do this as well, is:

 

from ayx import Package

from ayx import Alteryx

import pandas as pd

data_to_manipulate = Alteryx.read("#1")

data_to_manipulate.column_that_needs_dividing = data_to_manipulate.column_that_needs_dividing.div(100)

Alteryx.write(data_to_manipulate, 1)

 

If you want to round your number, you can use this

data_to_manipulate.column_that_needs_dividing = data_to_manipulate.column_that_needs_dividing.div(100).round(2)

as the 5th line

 

The results that I got from this were as I expected them to be.

Alteryx: 19/100 = 0.189999997615814

Pandas: 19/100 = 0.19

 

Alteryx is a product that we pay for, Pandas is made available for free, and one of them has solved this issue.

jdminton
12 - Quasar

I know this is an older post, but I wanted to share the solution with those who've run into this issue for rounding in the past. https://community.alteryx.com/t5/Alteryx-Designer-Desktop-Discussions/Macro-for-rounding-Hint-Altery...

 

Labels