fix
parent
d07cf51a6c
commit
8bf874013f
|
@ -40,7 +40,7 @@ def analisis_univariado(dfi, target=None, continuas=[], discretas=[]):
|
||||||
|
|
||||||
# Test de normalidad (Shapiro-Wilk)
|
# Test de normalidad (Shapiro-Wilk)
|
||||||
stat, p = shapiro(Xvar, nan_policy='raise')
|
stat, p = shapiro(Xvar, nan_policy='raise')
|
||||||
normal = p >= 0.05
|
normal = p < 0.05
|
||||||
|
|
||||||
if normal:
|
if normal:
|
||||||
# Distribución normal: media, desviación estándar, y test t
|
# Distribución normal: media, desviación estándar, y test t
|
||||||
|
|
Loading…
Reference in New Issue