PERGUNTO SE ESTÁ CORRETO
Install the ucimlrepo package
pip install ucimlrepo
Import the dataset into your code
from ucimlrepo import fetch_ucirepo
# fetch dataset
heart_disease = fetch_ucirepo(id=45)
# data (as pandas dataframes)
X = heart_disease.data.features
y = heart_disease.data.targets
# metadata
print(heart_disease.metadata)
# variable information
print(heart_disease.variables)