models_put_archive {civis} | R Documentation |
Update the archive status of this object
Description
Update the archive status of this object
Usage
models_put_archive(id, status)
Arguments
id |
integer required. The ID of the object. |
status |
boolean required. The desired archived status of the object. |
Value
A list containing the following elements:
id |
integer, The ID of the model. |
tableName |
string, The qualified name of the table containing the training set from which to build the model. |
databaseId |
integer, The ID of the database holding the training set table used to build the model. |
credentialId |
integer, The ID of the credential used to read the target table. Defaults to the user's default credential. |
modelName |
string, The name of the model. |
description |
string, A description of the model. |
interactionTerms |
boolean, Whether to search for interaction terms. |
boxCoxTransformation |
boolean, Whether to transform data so that it assumes a normal distribution. Valid only with continuous models. |
modelTypeId |
integer, The ID of the model's type. |
primaryKey |
string, The unique ID (primary key) of the training dataset. |
dependentVariable |
string, The dependent variable of the training dataset. |
dependentVariableOrder |
array, The order of dependent variables, especially useful for Ordinal Modeling. |
excludedColumns |
array, A list of columns which will be considered ineligible to be independent variables. |
limitingSQL |
string, A custom SQL WHERE clause used to filter the rows used to build the model. (e.g., "id > 105"). |
activeBuildId |
integer, The ID of the current active build, the build used to score predictions. |
crossValidationParameters |
list, Cross validation parameter grid for tree methods, e.g. "n_estimators": [100, 200, 500], "learning_rate": [0.01, 0.1], "max_depth": [2, 3]. |
numberOfFolds |
integer, Number of folds for cross validation. Default value is 5. |
notifications |
list, A list containing the following elements:
|
schedule |
list, A list containing the following elements:
|
parentId |
integer, The ID of the parent job that will trigger this model. |
runningAs |
list, A list containing the following elements:
|
timeZone |
string, The time zone of this model. |
lastRun |
list, A list containing the following elements:
|
hidden |
boolean, The hidden status of the item. |
user |
list, A list containing the following elements:
|
createdAt |
string, The time the model was created. |
updatedAt |
string, The time the model was updated. |
currentBuildState |
string, The status of the current model build. One of "succeeded", "failed", "queued", or "running,"or "idle", if no build has been attempted. |
currentBuildException |
string, Exception message, if applicable, of the current model build. |
builds |
array, An array containing the following fields:
|
predictions |
array, An array containing the following fields:
|
lastOutputLocation |
string, The output JSON for the last build. |
archived |
string, The archival status of the requested item(s). |