You really deserve much more likes and views. You explained why we made heatmaps and how to analyze them and make meaningful decision. It was a practical teaching, I love it.
@utsavaggarwal_ds3 жыл бұрын
Thankyou Prachi, I hope to bring more such informative content to you 😊
@amiraaliIsInLove3 жыл бұрын
Woooooow!! Thank you so much sir! You made it sound as it was a game ! for the first time in my life I've had fun while learning something.. Please keep posting because we'll keep watching ^_^
@utsavaggarwal_ds3 жыл бұрын
Thanks 😊 I'll keep posting
@mehradmortazavi5433 Жыл бұрын
I hoped we could have access to the codes but thank you for all the videos they are great!
@sadhana00022 жыл бұрын
Hi, is there a video where you explained how to predict the price?
@abhijeet72562 жыл бұрын
hi i am new to this, can you please tell me from where can i learn this type of coding. thanks
@dotaswot587010 ай бұрын
What about the negative highly correlated columns?
@alubillisrinu42616 ай бұрын
yeah , I was also thinking about it
@Babytravel-t7o4 жыл бұрын
Good one...👍
@timetraveller75132 жыл бұрын
Could you please tell me above what percentage in a heatmap is considered multicollinear?
@utsavaggarwal_ds2 жыл бұрын
Correlation greater than 0.8
@timetraveller75132 жыл бұрын
@@utsavaggarwal_ds thanks 🙂
@hkemal27434 жыл бұрын
Could you please share the notebooks?
@hkemal27434 жыл бұрын
When I write the same, I am getting error instead of heat map. Any idea? Why? f , ax = plt.subplots(figsize = (14,12)) plt.title('Correlation of Numeric Features with Sale Price',y=1,size=16) sns.heatmap(correlation,square = True, vmax=0.8) --------------------------- AttributeError Traceback (most recent call last) in ----> 1 f , ax = plt.subplots(figsize = (14,12)) 2 3 plt.title('Correlation of Numeric Features with Sale Price',y=1,size=16) 4 5 sns.heatmap(correlation,square = True, vmax=0.8) AttributeError: module 'matplotlib' has no attribute 'subplots'
@utsavaggarwal_ds4 жыл бұрын
can u send complete notebook on my email: baskyutsav@gmail.com
@rajesh5201 Жыл бұрын
try this plt.figure(figsize=(10,10)) plt.title("Correlation of Numeric Features with Sale Price") sns.heatmap(correlation, square=True, vmax=0.8)