I'm trying to perform the following Python Pandas operation in Azure Machine Learning Studio, but cannot find a module that handles it:
df.credit_score = df.credit_score.mask(df.credit_score > 800, df.credit_score / 10)
So I'm effectively just trying to find all values in my 'credit_score' column that are greater than 800 and divide them by 10. I have been unable so far to find a module in AML Studio that does that.
Also, I should add that I'm having issues with my Python script in AML Studio, which is why I'm attempting to replicate all of my code using AML built-in modules.
To my knowledge, there's no built-in module to do this succinctly (to my knowledge). If you prefer to use built-ins, you could: