I have a set of columns in my dataset which follow this pattern: currentIncome, AvgIncome, currentSalary, AvgSalary, currentNetWorth, AvgNetworth. I now want to get ratio columns for these e.g ratioIncome, ratioSalary, ratioNetWorth which will be calculated as ratio = current / Avg. How can I achieve this? I dont want to hard code because there are going to be hundereds of such columns.