Linear Regression with integers result in double

Hi Knimers

I'm trying to understand why my linear regression with all integer columns is predicting a column with double numbers. In this case, the scorer node doesn't work well :(

Sorry if I doing something stupid :)

Cheers

A regression will still always predict real values, because the coefficients will very likely be real values even if the input is integer. If you want integer results, you can use the double to int node afterwards.