Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowJuly 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more
The general advertisement is that the Auto ML is designed for "business analysts to build machine learning models". However, in some situations there could be realistic problems, unless someone is having a data science background.
Here is the case:
le = preprocessing.LabelEncoder()
le.fit(dataset['Defect'])
dataset['Defect'] = le.transform(dataset['Defect'])
# Paste or type your script code here:
import matplotlib.pyplot as pyplot
corr = dataset.corr('pearson')
pyplot.matshow(corr)
print(dataset)
pyplot.show()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.