|
|
@@ -6,7 +6,6 @@ import numpy as np
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
class MidpointNormalize(mpl.colors.Normalize):
|
|
|
def __init__(self, vmin, vmax, midpoint=0, clip=False):
|
|
|
self.midpoint = midpoint
|
|
|
@@ -107,10 +106,9 @@ class Analysis:
|
|
|
for feature in self.cont_features:
|
|
|
a.p_map(feature)
|
|
|
|
|
|
- a = AnalysisIntern(cluster_df_list, "ord")
|
|
|
+ a = AnalysisIntern(self.cluster_df_list, "ord")
|
|
|
for feature in self.ord_features:
|
|
|
a.p_map(feature)
|
|
|
|
|
|
for feature in self.nom_features:
|
|
|
a.p_map(feature)
|
|
|
-
|