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
{{ message }}
This repository has been archived by the owner on Oct 28, 2019. It is now read-only.
azure_fxn <- function(input_thing){
output_thing <- input_thing[input_thing$mpg > 30,]
return(output_thing)
}
inputMTCars <- mtcars
inputMTCars$carnames <- rownames(mtcars)
#removing rowname col from mtcars. This produces an error on the Consume function, with table column count being 1 more than expected
rownames(inputMTCars) <- NULL
api <- publishWebService(
ws,
fun = azure_fxn,
name = "AzureML-vignette-silly-function",
inputSchema = inputMTCars
)
output <- consume(api, inputMTCars)
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Reproducible Example Duplicated error below. Fix for issue at Columbus Collaborators Github
Reproducible Example
The text was updated successfully, but these errors were encountered: