Hello
I saw this code.
May anyone explain please why do they use informat $12.? (why not $10 for example)?
May anyone explain please why do they use input pointers +4 and +6?why not other numbers?
I see that var name has maximum 9 digits
I see that var score1 has 5 digits(included comma)
I see that var score2 has 5 digits(included comma)
data scores;
input name $12. +4 score1 comma5. +6 score2 comma5.;
cards;
Riley 1,132 1,187
Henderson 1,015 1,102
;
Run;