"pivot on two attributes?"
an example dataset:
year, int
sex, nominal: male, female
age_group, nominal: 0-20, 20-40, 40+
mortality, real
how to convert this dataset into:
year,
mortality_male_0-20,
mortality_male_20-40,
mortality_male_40+,
mortality_female_0-20,
mortality_female_20-40,
mortality_female_40+
I tried:
Example2AttributePivoting
group_attribute = year
index_attribute = age_group|sex
but index_attribute can only have a single attribute?