Arnab Chattopadhyay’s Post

View profile for Arnab Chattopadhyay, graphic

Exploring confluence of artificial intelligence, art, music, dancing, yoga and spirituality for wellness of one and all. YouTube Arnab Kumar, X, Instagram @arnabch01, Investor, Author, Dancer, Artist, AI, philanthropy.

Useful slide. #python #programming

View profile for Avi Chawla, graphic

Co-founder @ Daily Dose of Data Science (120k readers) | Follow to learn about Data Science, Machine Learning Engineering, and best practices in the field.

Here’s what most people get wrong about correlation. Correlation measures how two features vary with one another linearly (or monotonically). This makes correlation symmetric: corr(A, B) = corr(B, A). Yet, associations are often asymmetric. For instance, given a date, it is easy to tell the month. But given a month, you can never tell the date. But correlation, being symmetric, entirely ignores this notion. What’s more, it is not meant to quantify how well a feature can predict the outcome. Yet, at times, it is misinterpreted as a measure of “predictiveness”. Lastly, correlation is mostly limited to numerical data. But categorical data is equally important for predictive models. The Predictive Power Score (PPS) addresses each of these limitations. As the name suggests, it measures the predictive power of a feature. PPS(a → b) is calculated as follows: - If target (b) is numeric: Train a Decision Tree Regressor that predicts b using a. Find PPS by comparing its MAE to the MAE baseline model (median prediction). - If target (b) is categorical: Train a Decision Tree Classifier that predicts b using a. Find PPS by comparing its F1 to the F1 of a baseline model (random or most frequent prediction). Thus, PPS: - is asymmetric, meaning PPS(a, b) != PPS(b,a). - can be used on categorical data. - can be used to measure the predictive power of categorical features (a). - works well for linear and non-linear relationships. - works well for monotonic and non-monotonic relationships. Its effectiveness is evident from the image below. For all three datasets: - correlation is low. - PPS (x → y) is high. - PPS (y → x) is zero. That being said, it is important to note that correlation has its place. When selecting between PPS and correlation, first set a clear objective about what you wish to learn about the data: - Do you want to know the general monotonic trend between two variables? Correlation will help. - Do you want to know the predictiveness of a feature? PPS will help. -- 👉 Join 77k+ data scientists and get a Free data science PDF (550+ pages) with 320+ posts by subscribing to my daily newsletter: https://lnkd.in/gzfJWHmu -- 👉 Over to you: What other points will you add here about PPS vs. Correlation? #python

  • No alternative text description for this image

To view or add a comment, sign in

Explore topics