> Also, is there a way to make associative arrays? > It would be nice to be able to get the format from input and then have > command<-array[format] Named lists might do what you want. For example, fruitcolor <- list(apple="red", grape="green", orange="orange") Then you could say, fruitcolor$apple or fruitcolor[["apple"]] to get "red". + seth