NEWS (original) (raw)

Three ways to specify the variable list (implemented in the functions such as SUM(), MEAN(),Alpha()):

1. var + items: use the common and unique parts of variable names. (e.g.,var="RSES", items=1:10, rev=c(3, 5, 8, 9, 10))

2. vars: directly define the variable list. (e.g.,vars=c("E1", "E2", "E3", "E4", "E5"), rev=c("E1", "E2"))

3. varrange: use the start and end positions of the variable list. (e.g.,varrange="E1:E5", rev=c("E1", "E2"))