Video upload date:  · Duration: PT1H46M27S  · Language: EN

Scenario: Executive Services, Inc. (ESI) is a azure video

dp-100-data-scientist-assoc video for scenario: Executive Services, Inc. (ESI) is a leading headhunting agency, helmed by CEO Lenny Rollie, with its main office

This is a dedicated watch page for a single video.

Full Certification Question

Scenario: Executive Services, Inc. (ESI) is a leading headhunting agency, helmed by CEO Lenny Rollie, with its main office in Manhattan, New York. ESI has gained widespread recognition for successfully placing top-level executives in prominent companies worldwide. Lenny has approached you to assist ESI with internal IT projects and advise the IT team on a key technical matter. Project Details: The team is working with an Azure blob container that holds a set of TSV files, all of which follow the same data schema. This container is registered as a datastore in an Azure Machine Learning service workspace. A developer on the team plans to aggregate the data from all TSV files and register the aggregated dataset in an Azure Machine Learning workspace using the Azure Machine Learning SDK for Python. The developer executes the following Python code: python from azureml . core . workspace import Workspace from azureml . core . datastore import Datastore from azureml . core . dataset import Dataset import pandas as pd datastore_paths = ( datastore , './data/*.tsv' ) myDataset_1 = Dataset . File . from_files ( path = datastore_paths ) myDataset_2 = Dataset . Tabular . from_delimited_files ( path = datastore_paths , separator = ' ' ) Question: Lenny pulls you aside to review the developer’s approach and asks whether the dataset myDataset_1 can be converted into a pandas DataFrame using the method myDataset_1.to_pandas_dataframe() . What should your response be?