Power BI 中的 Python 入门
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
# 数据转换步骤
...
seaborn.___plot(
data = DataFrame,
...
)
plt.show()
Power BI 中的 Python 入门