Sep-30-2021, 02:18 PM
Good morning to the community!
I would like to remove the column Dynamic (average) or Dynamic (average) and T- 10-6.
How to do this?
Thank you in advance for your answer.
I would like to remove the column Dynamic (average) or Dynamic (average) and T- 10-6.
How to do this?
1 2 3 4 5 6 7 8 9 10 11 12 13 |
from pandas import read_csv import matplotlib.pyplot as plt import seaborn as sns import numpy as np import numpy.ma as ma import pandas as pd dataset = pd.read_csv( 'Santé3.csv' , sep = ';' , encoding = 'latin-1' , index_col = 0 ) dataset dataset.corr plt.figure(figsize = ( 200 , 30 )) plt.subplots(figsize = ( 15 , 8 )) sns.heatmap(dataset.corr(), cmap = 'coolwarm' , vmin = - 1 , vmax = 1 , annot = True ) |
Attached Files