I have a function that takes a whole number and outputs four values. For now I am only worried about matching the first 2 outputs. What is the best way to do this? I would use regression but due to the output using mod I believe I would just get the mean and it wouldn't match. The first value is always between 11 and 30. The second is 2, 3, or 4. The third is between 10 and 24. The fourth is between 5 and 20.
example values:
480 -> 25, 3, 19, 18
481 -> 20, 4, 20, 11
482 -> 19, 2, 16, 17
483 -> 29, 4, 14, 13
484 -> 28, 3, 11, 15
487 -> 27, 3, 11, 11
512 -> 27, 3, 11, 19
971 -> 19, 4, 24, 18
Here are some values that I haven't finished computing the first value but I know the range its in
IN -> N, A, F, T
485 -> (26-30), 4, 11, 16
486 -> (21-25), 3, 18, 15
488 -> (26-30), 2, 13, 18
489 -> (16-20), 2, 21, 7
490 -> (16-20), 3, 10, 13
491 -> (26-30), 2, 24, 10
492 -> (26-30), 2, 22, 13
493 -> (16-20), 2, 10, 18
494 -> (16-20), 4, 22, 16
495 -> (21-25), 3, 20, 18
496 -> (11-15), 3, 22, 6
497 -> (21-25), 2, 12, 17
498 -> (26-30), 2, 13, 20
499 -> (21-25), 4, 17, 10
500 -> (26-30), 3, 24, 10
501 -> (11-15), 2, 23, 11
502 -> (21-25), 2, 19, 19
503 -> (21-25), 2, 18, 13