View source: R/ComplianceDocumentation.R
CreateComplianceDocumentation | R Documentation |
Note that if you're looking to download compliance documentation to a DOCX file, you can
call DownloadComplianceDocumentation
directly without using this function.
CreateComplianceDocumentation(model, templateId = NULL)
model |
An S3 object of class dataRobotModel like that returned by the function GetModel, or each element of the list returned by the function ListModels. |
templateId |
character. Optional. The ID of the template to use in generating custom model documentation. |
An integer value that can be used as the jobId parameter in a subsequent call
to WaitForJobToComplete
.
## Not run:
projectId <- "59a5af20c80891534e3c2bde"
modelId <- "5996f820af07fc605e81ead4"
model <- GetModel(projectId, modelId)
jobId <- CreateComplianceDocumentation(model) # optional step
WaitForJobToComplete(projectId, jobId) # optional step
DownloadComplianceDocumentation(model)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.