Get the summary for a column

get/servers/{serverName}/caslibs/{caslibName}/tables/{tableName}/columns/{columnName}/summaryStatistics
Internal-Use Only

Returns the summary for a single numeric column in the loaded CAS table.

Request Samples

1

Response Samples

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": 0
17}

Path Parameters

NameTypeRequiredDescription
caslibName
string
true

The name of the Caslib containing the table.

columnName
string
true

The name of column for which Summary info is requested.

serverName
string
true

The name of the server containing the Caslib.

tableName
string
true

The name of table for which column info is requested.

Query Parameters

NameTypeRequiredDescription
sessionId
string
false

The optional ID of the session containing the Caslib. If unspecified, only tables in global caslibs will be accessible.

Responses

StatusMeaningDescription
200OKThe requested table's summary information for a given column was returned.Schema
400Bad RequestThe request was invalid.Schema
404Not FoundThe requested CAS server or Caslib does not exist.
409ConflictThe request could not be completed due to a conflict with the current state of the resource. Details are included in the response body.