Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hi all,
I try to import titanic dataset in Power BI, and make some basic Python visualisations.
In the query editor I can succelfully import the dataset using this Python code:
import pandas as pd
url = "http://biostat.mc.vanderbilt.edu/wiki/pub/Main/DataSets/titanic3.xls"
titanic_df = pd.read_excel(url)
Then I load the data to the Power BI report, so I choose for a Phython visual type.
I want some basic visualisations using the Survived column, so I add column Survived in the values pane of the Phython visual type. Now I enter this code:
# dataset = pandas.DataFrame(age)
# dataset = dataset.drop_duplicates()
# Paste or type your script code here:
import numpy as np
import pandas as pd
import seaborn as sns
sns.set_style('whitegrid')
ax = sns.countplot(x='survived', data=titanic_df)
even with changing data=titanic_df to data=dataset I don't get a result.
I Jupyter notebooks this works fine. Python and the 3 packages (np,pd,sns) are installed on my machine and seem to work for other very small datasets (like a self constructed small dataframe of shape 2*2).
Anyone who knows how to do this?
Thanks in advance!
Hi FilipFiN,
If possible, could you please inform me the detailed error information? You could click the "See details" to get the detailed error information.
Best Regards,
Zoe Zhi
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
User | Count |
---|---|
76 | |
75 | |
46 | |
31 | |
27 |
User | Count |
---|---|
99 | |
91 | |
51 | |
48 | |
47 |