Introduction to 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
# Data transformation steps
...
seaborn.___plot(
data = DataFrame,
...
)
plt.show()
Introduction to Python in Power BI