Data Structures :: Lists
- ds_list_add_list(id,list)
- Adds a list to a given list and marks it.
- ds_list_add_map(id,map)
- Adds a map to a given list and marks it.
- ds_list_cv(id[,sample])
- Returns the coefficient of variation for the values in a given list.
- ds_list_flip(id)
- Rearranges the values of a list in reverse order.
- ds_list_geometric_mean(id)
- Returns the geometric mean of the values in a given list.
- ds_list_load(filename [,separator])
- Returns as ds_list retrieved from a given file, or (-1) on error.
- ds_list_max(id)
- Returns the maximum value of a given list.
- ds_list_mean(id)
- Returns the mean (average) of the values in a given list.
- ds_list_median(id)
- Returns the median of the values in the given list.
- ds_list_min(id)
- Returns the minimum value of a given list.
- ds_list_pop_standard_deviation(id)
- Returns the population standard deviation of the values in a given list.
- ds_list_range(id)
- Returns the range of the values in a given list.
- ds_list_save(dsid,filename [,separator])
- Saves a list to a given file.
- ds_list_select_relative(current,delta,list)
- Returns a value from a list data structure in a position relative to a given value.
- ds_list_select_relative_wrap(current,delta,list)
- Returns a value from a list data structure in a position relative to a given value.
- ds_list_standard_deviation(id [,sample])
- Returns the standard deviation of the values in a given list.
- ds_list_standard_score(id,pos)
- Returns the standard score (z-score) of the value at a given position in a given list.
- ds_list_sum(id)
- Returns the sum of all values in a given list.
- ds_list_sum_squares(id)
- Returns the sum of squares of all values in a given list.
- ds_list_variance(id[,sample])
- Returns the variance of the values in a given list.
- ds_list_vmr(id [,sample])
- Returns the variance-to-mean ratio of the values in a given list.