Tem aparecido esse erro "'DataFrame' object has no attribute 'colums'"após o código
Xmaria_normalizado = norm.transform(pd.DataFrame(Xmaria, colums = X.colums))
Xmaria_normalizado
AttributeError Traceback (most recent call last)
<ipython-input-23-3e0578136aca> in <module>
----> 1 Xmaria_normalizado = norm.transform(pd.DataFrame(Xmaria, colums = X.colums))
2 Xmaria_normalizado
/usr/local/lib/python3.7/dist-packages/pandas/core/generic.py in __getattr__(self, name)
5485 ):
5486 return self[name]
-> 5487 return object.__getattribute__(self, name)
5488
5489 def __setattr__(self, name: str, value) -> None:
AttributeError: 'DataFrame' object has no attribute 'colums'