Data Structures :: Lists
- ds_list_add_list(parent, list)
- Adds a list to a given list and marks it.
- ds_list_add_map(parent, map)
- Adds a map to a given list and marks it.
- ds_list_cv(list, sample)
- Returns the coefficient of variation for values in a list.
- ds_list_flip(list)
- Rearranges the values of a list in reverse order.
- ds_list_geometric_mean(list)
- Returns the geometric mean of values in a list.
- ds_list_max(list)
- Returns the maximum value in a list.
- ds_list_mean(list)
- Returns the arithmetic mean of values in a list.
- ds_list_median(list)
- Returns the median of the values in the given list.
- ds_list_min(list)
- Returns the minimum value in a list.
- ds_list_pop_standard_deviation(list)
- Returns the population standard deviation for values in a list.
- ds_list_range(list)
- Returns the range of the values in a list.
- 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(list, sample)
- Returns the standard deviation for values in a list.
- ds_list_standard_score(list, pos)
- Returns the standard score (z-score) of the value at a position in a list.
- ds_list_sum(list)
- Returns the sum of all values in a list.
- ds_list_sum_of_squares(list)
- Returns the sum of squares of all values in a list.
- ds_list_sum_squares(list)
- Returns the sum of squares of all values in a given list.
- ds_list_variance(list, sample)
- Returns the variance of the values in a given list.
- ds_list_vmr(list, sample)
- Returns the variance-to-mean ratio of values in a list.