Please note.
N bit interger type is nice to compress the columns.
On the other hand, the user has to take care with subsequent calculations, especially when the calculation is started via the
right click / New Formula column / Formula menu:

Let's start with
dt = New Table( "numeric data",
Add Rows( 3 ),
New Column( "numeric 1 byte Integer",
Numeric( 1 ),
Set Values( [1,2,3] ),
),
New Column( "numeric (default)",
Numeric,
Set Values( [10,20,30] ),
)
);
and calculate

JMP copies the data type of the input column an instead of 0.1 it will return:

On the other hand, when the user selects both input column and calculates the "ratio" via:

JMP creates the column with
setting ... and the result is 0.1:
