display.config {notebookutils}R Documentation

Set the chart config metadata for current dataframe (set by display) which needs to be visualized.

Description

Set the chart config metadata for current dataframe (set by display) which needs to be visualized.

Usage

display.config(
  commId,
  lastCommId = NULL,
  binsNumber = 10,
  category = "table",
  keys = NULL,
  values = NULL,
  series = NULL,
  aggregation = NULL,
  column = NULL
)

Arguments

commId

the id used to identify whether the API call from synapse notebook js client.

lastCommId

same with id parameter, but the previous value.

binsNumber

bins number for rendering histogram, default is 10.

category

the chart category as bar, line, default is table.

keys

the column names which useds to render x-axis.

values

the column names which used to render y-axis.

series

the column which used to render the chart series

aggregation

the aggregation operation type: sum, avg, min, max, count.

column

will deperated: the column name used to calculate the statistic info, as the column type, unique values, missing values, etc.


[Package notebookutils version 1.5.3 Index]