You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To examine the uploaded data, select**Data**on the left. The data is uploaded and a data asset is created:
156
+
To examine the uploaded data, select**Data**in the **Assets** section of the left-hand navigation menu. The data is uploaded and a data asset is created:
157
157
158
158
:::image type="content" source="media/tutorial-explore-data/access-and-explore-data.png" alt-text="Screenshot shows the data in studio.":::
159
159
@@ -173,17 +173,24 @@ An Azure Machine Learning datastore is a *reference* to an *existing* storage ac
173
173
174
174
## Access your data in a notebook
175
175
176
-
Pandas directly supports URIs. This example shows how to read a CSV file from an Azure Machine Learning datastore:
176
+
You want to create data assets for frequently accessed data. You can access the data using the URI as shown below. However, as mentioned previously, it can become difficult to remember these URIs. Additionally, you still need to substitute the datastore name, folder, and filename values for your specific resources.
177
+
178
+
This example shows how to read a CSV file from an Azure Machine Learning datastore using the same configuration values from your `ml_client`:
# Using the same values from ml_client configuration
184
+
subscription_id = ml_client.subscription_id
185
+
resource_group = ml_client.resource_group_name
186
+
workspace_name = ml_client.workspace_name
183
187
184
-
However, as mentioned previously, it can become difficult to remember these URIs. Additionally, you must manually substitute all **<_substring_>** values in the **pd.read_csv**command with the real values for your resources.
You want to create data assets forfrequently accessed data. Here's an easier way to access the CSV filein Pandas:
193
+
An alternative is to use the `azureml-fsspec` library, which provides a file system interface forAzure Machine Learning datastores. Here's an easier way to access the CSV filein Pandas:
187
194
188
195
> [!IMPORTANT]
189
196
> In a notebook cell, execute this code to install the `azureml-fsspec` Python library in your Jupyter kernel:
0 commit comments