https://bugs.kde.org/show_bug.cgi?id=422225

--- Comment #3 from Alexander Semke <alexander.se...@web.de> ---
(In reply to Eduardo from comment #1)
> the value of c0 were so small and then i changed the input data to
> 
> x: (0; 0,37; 0,5)
> y: (0; 20; 25)
> 
> and forget to correct on the first message. Consider x = 0,37 as in the
> print screen in attachment

We use the first row of the data to be pasted to recognize the data type. In
this case we have 0 here and we set the column types to integer. After this the
conversion of 0,37 and of 0,5 to integer fails and you get 0 here. For all the
remaining rows you also get 0 - this is because of another bug where we don't
properly differentiate between "empty integer values" and "zero integer value",
this will be solved in v2.9.

To solve the actual problem, just use 0,0 for the first row:

0,0     0,0
0,37    20,0
0,5     25,0

With this you'll get numeric columns with three rows only and the fit will
produce the correct results.

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to