Bue dia Siguiendo el ejercicio propuesto por la profe pars sacar la desviacion media estandar con .mad ()
notas_maria['María'].mad()
Arroja el siguiente error:
AttributeError Traceback (most recent call last)
<ipython-input-143-d3ef8bcfdbcf> in <cell line: 1>()
----> 1 notas_maria['María'].mad()
2
3
/usr/local/lib/python3.10/dist-packages/pandas/core/generic.py in __getattr__(self, name)
5987 ):
5988 return self[name]
-> 5989 return object.__getattribute__(self, name)
5990
5991 def __setattr__(self, name: str, value) -> None:
AttributeError: 'Series' object has no attribute 'mad'
Pregunte a Luri por el error y me arroja la siguiente solucion que no funciona:
desviacion_media_absoluta_maria = notas_maria.mad()
print(desviacion_media_absoluta_maria)
AttributeError: 'DataFrame' object has no attribute 'mad'
otra vez y no:
desviacion_media_absoluta_maria = notas_maria["María"].mad()
print(desviacion_media_absoluta_maria)
AttributeError: 'Series' object has no attribute 'mad'