@@ -51,7 +51,13 @@ This sample shows how to install Zoo:
51
51
# The script MUST contain a function named azureml_main
52
52
# which is the entry point for this module.
53
53
54
- # The entry point function MUST have two input arguments:
54
+ # Please note that functions dependant on X11 library
55
+ # such as "View" are not supported because X11 library
56
+ # is not pre-installed.
57
+
58
+ # The entry point function MUST have two input arguments.
59
+ # If the input port is not connected, the corresponding
60
+ # dataframe argument will be null.
55
61
# Param<dataframe1>: a R DataFrame
56
62
# Param<dataframe2>: a R DataFrame
57
63
azureml_main <- function (dataframe1 , dataframe2 ){
@@ -76,7 +82,13 @@ The following example shows how to upload an image file in the **Execute R Scrip
76
82
# The script MUST contain a function named azureml_main
77
83
# which is the entry point for this module.
78
84
79
- # The entry point function MUST have two input arguments:
85
+ # Please note that functions dependant on X11 library
86
+ # such as "View" are not supported because X11 library
87
+ # is not pre-installed.
88
+
89
+ # The entry point function MUST have two input arguments.
90
+ # If the input port is not connected, the corresponding
91
+ # dataframe argument will be null.
80
92
# Param<dataframe1>: a R DataFrame
81
93
# Param<dataframe2>: a R DataFrame
82
94
azureml_main <- function (dataframe1 , dataframe2 ){
@@ -133,7 +145,13 @@ Datasets stored in the designer are automatically converted to an R data frame w
133
145
# The script MUST contain a function named azureml_main
134
146
# which is the entry point for this module.
135
147
136
- # The entry point function MUST have two input arguments:
148
+ # Please note that functions dependant on X11 library
149
+ # such as "View" are not supported because X11 library
150
+ # is not pre-installed.
151
+
152
+ # The entry point function MUST have two input arguments.
153
+ # If the input port is not connected, the corresponding
154
+ # dataframe argument will be null.
137
155
# Param<dataframe1>: a R DataFrame
138
156
# Param<dataframe2>: a R DataFrame
139
157
azureml_main <- function (dataframe1 , dataframe2 ){
@@ -197,7 +215,14 @@ The following sample shows how to scale and normalize input data:
197
215
# R version: 3.5.1
198
216
# The script MUST contain a function named azureml_main
199
217
# which is the entry point for this module.
200
- # The entry point function must have two input arguments:
218
+
219
+ # Please note that functions dependant on X11 library
220
+ # such as "View" are not supported because X11 library
221
+ # is not pre-installed.
222
+
223
+ # The entry point function MUST have two input arguments.
224
+ # If the input port is not connected, the corresponding
225
+ # dataframe argument will be null.
201
226
# Param<dataframe1>: a R DataFrame
202
227
# Param<dataframe2>: a R DataFrame
203
228
azureml_main <- function(dataframe1, dataframe2){
0 commit comments