Get the summary for all numeric columns
Returns the summary for the numeric column values in the loaded CAS table Returns a collection of summaries for the numeric columns in a loaded CAS table. Supports SAS standard paging query parameters. Supports SAS standard paging query parameters, sorting, and filtering. Schema of items returned in the response collection is included below, and are of type application/vnd.sas.cas.column.summary.statistics+json.
1{2 "CSS": -1.7976931348623157e+308,3 "USS": -1.7976931348623157e+308,4 "coefficientOfVariation": -1.7976931348623157e+308,5 "columnName": "string",6 "max": -1.7976931348623157e+308,7 "mean": -1.7976931348623157e+308,8 "min": -1.7976931348623157e+308,9 "numMissingValues": -1.7976931348623157e+308,10 "probT": 0,11 "stdDev": -1.7976931348623157e+308,12 "stdErr": -1.7976931348623157e+308,13 "sum": -1.7976931348623157e+308,14 "tValue": -1.7976931348623157e+308,15 "variance": -1.7976931348623157e+308,16 "version": 017}
Name | Type | Required | Description |
---|---|---|---|
caslibName | string | true | The name of the Caslib containing the table. |
serverName | string | true | The name of the server containing the Caslib. |
tableName | string | true | The name of table for which column info is requested. |
Name | Type | Required | Description |
---|---|---|---|
sessionId | string | false | The optional ID of the session containing the Caslib. If unspecified, only tables in global caslibs will be accessible. |
limit | integer | false | Maximum number of items to return in this page of results. The actual number of returned items can be less if the collection has been exhausted. Defaults to 10. |
start | integer | false | The starting index of the first item in a page. Defaults to 0. |
Status | Meaning | Description | ||
---|---|---|---|---|
200 | OK | The requested table's summary information for all numeric columns was returned. | Schema | |
404 | Not Found | The requested CAS server or Caslib does not exist. | ||
409 | Conflict | The request could not be completed due to a conflict with the current state of the resource. Details are included in the response body. |