So, to be up front, i already have *a* solution to this problem.. and this more of a math question than it is an Alteryx question..
I have a data set (shown in blue) that very clearly follows a power curve. and the goal is to find a mathematical curve that best fits it

My current solution to use a python Curve_Fit function. It fits the data to the formula y = a*x^b.. This solution works well.. But since it's stepping through many iterations of 'a' and 'b' to find the best fit, it's kind of slow

After some googling, i have been led to believe that i should be able to mathematically transform the raw data into a linear trend.. then i can just do a linear regression on it.. but i cant figure out how to do that..
Are there any math whizzes out there that know if it's possible to transform this raw data from a power curve into a linear one?