युग्मवार correlation

Python में Dimensionality Reduction

Jeroen Boeye

Head of Machine Learning, Faktion

युग्मवार correlation

sns.pairplot(ansur, hue="gender")

ansur pairplot

Python में Dimensionality Reduction

युग्मवार correlation

sns.pairplot(ansur, hue="gender")

ansur pairplot annotated

Python में Dimensionality Reduction

Correlation coefficient

अत्यधिक correlations

Python में Dimensionality Reduction

Correlation coefficient

गड़बड़ correlations

Python में Dimensionality Reduction

Correlation matrix

weights_df.corr()

correlation matrix ansur

Python में Dimensionality Reduction

Correlation matrix

weights_df.corr()

correlation matrix ansur duplicates

Python में Dimensionality Reduction

Correlation matrix

weights_df.corr()

correlation matrix ansur duplicates 2

Python में Dimensionality Reduction

Correlation matrix

weights_df.corr()

correlation matrix ansur diagonal

Python में Dimensionality Reduction

Correlation matrix का दृश्यांकन

cmap = sns.diverging_palette(h_neg=10, 
                             h_pos=240, 
                             as_cmap=True)

sns.heatmap(weights_df.corr(), center=0, 
            cmap=cmap, linewidths=1, 
            annot=True, fmt=".2f")

correlation matrix visualized

Python में Dimensionality Reduction

Correlation matrix का दृश्यांकन

corr = weights_df.corr()

mask = np.triu(np.ones_like(corr, dtype=bool))
array([[ True,  True,  True],
       [False,  True,  True],
       [False, False,  True]])
Python में Dimensionality Reduction

Correlation matrix का दृश्यांकन

sns.heatmap(weights_df.corr(), mask=mask, 
            center=0, cmap=cmap, linewidths=1, 
            annot=True, fmt=".2f")

weights vs. height correlations masked

Python में Dimensionality Reduction

Correlation matrix का दृश्यांकन

ansur चयन correlations

Python में Dimensionality Reduction

अभ्यास करते हैं!

Python में Dimensionality Reduction

Preparing Video For Download...