Introductie tot Python in Power BI
Jacob H. Marquez
Data Scientist











seaborn.jointplot(
x = "x",
y = "y",
data = DataFrame
)

seaborn.pairplot(
data = DataFrame
)
import matplotlib.pyplot as plt
import seaborn as sns
# Stappen voor datatransformatie
...
seaborn.___plot(
data = DataFrame,
...
)
plt.show()
Introductie tot Python in Power BI