How to plot heatmap for high-dimensional dataset?

后端 未结 2 764
北海茫月
北海茫月 2021-01-13 17:34

I would greatly appreciate if you could let me know how to plot high-resolution heatmap for a large dataset with approximately 150 features.

My code is as follows:

2条回答
  •  太阳男子
    2021-01-13 18:16

    If I understand your problem correctly, I think all you have to do is increase you figure size:

    f, ax = plt.subplots(figsize=(20, 20))
    

    instead of

    f, ax = plt.subplots(figsize=(9, 9))
    

提交回复
热议问题