Skip to content

Commit a63a107

Browse files
authored
Update how-to-r-interactive-development.md
1 parent f80e362 commit a63a107

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

articles/machine-learning/how-to-r-interactive-development.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,16 +111,17 @@ When your data is stored in a data asset [created in Azure Machine Learning](how
111111
Alternatively, you can use a Datastore URI to access different files on a registed Datastore, and read this into an R `data.frame`.
112112
113113
1. Create a Datastore URI, using your own values in the following format:
114-
```r
114+
115+
```r
115116
subscription <- '<subscription_id>'
116117
resource_group <- '<resource_group>'
117118
workspace <- '<workspace>'
118119
datastore_name <- '<datastore>'
119120
path_on_datastore <- '<path>'
120-
121+
121122
uri <- paste0("azureml://subscriptions/", subscription, "/resourcegroups/", resource_group, "/workspaces/", workspace, "/datastores/", datastore_name, "/paths/", path_on_datastore)
122-
```
123-
123+
```
124+
124125
> [!TIP]
125126
> Rather than remember the datastore URI format, you can copy-and-paste the datastore URI from the Studio UI, if you know the datastore where your file is located:
126127
> 1. Navigate to the file/folder you want to read into R

0 commit comments

Comments
 (0)