create_project.Rd
Returns a sasctl MMproject object from Model Manager
create_project(
session,
name,
description = NULL,
model_function = NULL,
input_vars = NULL,
output_vars = NULL,
image = NULL,
additional_parameters = NULL,
...
)
viya_connection object, obtained through session
function
The name of the project
The description of the project.
The project model function of the project. Valid values: analytical, classification, cluster, forecasting, prediction, Text categorization, Text extraction, Text sentiment, Text topics, transformation
data.frame
with the input data sample to configure the project variables.
data.frame
with the output data sample to configure the project variables.
Image URI to be used as project cover
list
of parameters and lists to be added to the payload
additional parameters to be passed to httr::POST
such as httr::add_headers
A data.frame
with the list of projects
if (FALSE) { # \dontrun{
new_project <- create_project(sess, name = "ModelProj",
description = "My fancy project",
model_function = "classification")
new_project
} # }