We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 484c33f commit 9996506Copy full SHA for 9996506
power-bi-python/02_extract_email.py
@@ -1,3 +1,4 @@
1
+# flake8: noqa
2
# 'dataset' holds the input data for this script
3
dataset = dataset.assign(
4
full_name=dataset["customer"].str.extract(r"([^<]+)"),
power-bi-python/03_split_fullname.py
dataset[["first_name", "last_name"]] = dataset["full_name"].str.split(
n=1, expand=True
power-bi-python/04_python_visual.py
# The following code to create a dataframe and remove duplicated rows is always executed and acts as a preamble for your script:
# dataset = pandas.DataFrame(color, vin)
0 commit comments