While stack-ing DataFrame, i.e. converting it from wide to long format, usually you specify id_vars - the column(s) you need to be repeated (index), and all other columns (measure_vars, e.g. observations) are stacked in one long column.
But in Julia DataFrames, those arguments are specified not as named keywords, and measure_vars come before id_vars in function call.
What is the reason for such placement of arguments? How do I specify id_vars without measure_vars?