Displaying 1 result from an estimated 1 matches for "divisiont".
Did you mean:
division
2007 Sep 04
3
variable format
Okay, I want to do something similar to SAS proc format.
I usually do this...
a <- NULL
a$divisionOld <- c(1,2,3,4,5)
divisionTable <- matrix(c(1, "New England",
2, "Middle Atlantic",
3, "East North Central",
4, "West North Central",
5, "South Atlantic"),...