Skip to content

Commit 9996506

Browse files
committed
Power BI: dataset is provided implicitly
1 parent 484c33f commit 9996506

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

power-bi-python/02_extract_email.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# flake8: noqa
12
# 'dataset' holds the input data for this script
23
dataset = dataset.assign(
34
full_name=dataset["customer"].str.extract(r"([^<]+)"),

power-bi-python/03_split_fullname.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# flake8: noqa
12
# 'dataset' holds the input data for this script
23
dataset[["first_name", "last_name"]] = dataset["full_name"].str.split(
34
n=1, expand=True

power-bi-python/04_python_visual.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# flake8: noqa
12
# The following code to create a dataframe and remove duplicated rows is always executed and acts as a preamble for your script:
23

34
# dataset = pandas.DataFrame(color, vin)

0 commit comments

Comments
 (0)