Skip to content

Commit

Permalink
docs: Indicate what type of CI is made (#9462)
Browse files Browse the repository at this point in the history
Minor clarification to the docs so that it is clear what type of CI is
added. This info is available in the aggregation docs, but not in the
docstring to the errorbar and errorband marks.

---------

Co-authored-by: GitHub Actions Bot <[email protected]>
  • Loading branch information
joelostblom and GitHub Actions Bot authored Nov 3, 2024
1 parent 9cee960 commit 6839bd9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions build/vega-lite-schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -8446,7 +8446,7 @@
},
"extent": {
"$ref": "#/definitions/ErrorBarExtent",
"description": "The extent of the band. Available options include:\n- `\"ci\"`: Extend the band to the confidence interval of the mean.\n- `\"stderr\"`: The size of band are set to the value of standard error, extending from the mean.\n- `\"stdev\"`: The size of band are set to the value of standard deviation, extending from the mean.\n- `\"iqr\"`: Extend the band to the q1 and q3.\n\n__Default value:__ `\"stderr\"`."
"description": "The extent of the band. Available options include:\n- `\"ci\"`: Extend the band to the 95% bootstrapped confidence interval of the mean.\n- `\"stderr\"`: The size of band are set to the value of standard error, extending from the mean.\n- `\"stdev\"`: The size of band are set to the value of standard deviation, extending from the mean.\n- `\"iqr\"`: Extend the band to the q1 and q3.\n\n__Default value:__ `\"stderr\"`."
},
"interpolate": {
"$ref": "#/definitions/Interpolate",
Expand Down Expand Up @@ -8504,7 +8504,7 @@
},
"extent": {
"$ref": "#/definitions/ErrorBarExtent",
"description": "The extent of the band. Available options include:\n- `\"ci\"`: Extend the band to the confidence interval of the mean.\n- `\"stderr\"`: The size of band are set to the value of standard error, extending from the mean.\n- `\"stdev\"`: The size of band are set to the value of standard deviation, extending from the mean.\n- `\"iqr\"`: Extend the band to the q1 and q3.\n\n__Default value:__ `\"stderr\"`."
"description": "The extent of the band. Available options include:\n- `\"ci\"`: Extend the band to the 95% bootstrapped confidence interval of the mean.\n- `\"stderr\"`: The size of band are set to the value of standard error, extending from the mean.\n- `\"stdev\"`: The size of band are set to the value of standard deviation, extending from the mean.\n- `\"iqr\"`: Extend the band to the q1 and q3.\n\n__Default value:__ `\"stderr\"`."
},
"interpolate": {
"$ref": "#/definitions/Interpolate",
Expand Down Expand Up @@ -8545,7 +8545,7 @@
"properties": {
"extent": {
"$ref": "#/definitions/ErrorBarExtent",
"description": "The extent of the rule. Available options include:\n- `\"ci\"`: Extend the rule to the confidence interval of the mean.\n- `\"stderr\"`: The size of rule are set to the value of standard error, extending from the mean.\n- `\"stdev\"`: The size of rule are set to the value of standard deviation, extending from the mean.\n- `\"iqr\"`: Extend the rule to the q1 and q3.\n\n__Default value:__ `\"stderr\"`."
"description": "The extent of the rule. Available options include:\n- `\"ci\"`: Extend the rule to the 95% bootstrapped confidence interval of the mean.\n- `\"stderr\"`: The size of rule are set to the value of standard error, extending from the mean.\n- `\"stdev\"`: The size of rule are set to the value of standard deviation, extending from the mean.\n- `\"iqr\"`: Extend the rule to the q1 and q3.\n\n__Default value:__ `\"stderr\"`."
},
"rule": {
"anyOf": [
Expand Down Expand Up @@ -8601,7 +8601,7 @@
},
"extent": {
"$ref": "#/definitions/ErrorBarExtent",
"description": "The extent of the rule. Available options include:\n- `\"ci\"`: Extend the rule to the confidence interval of the mean.\n- `\"stderr\"`: The size of rule are set to the value of standard error, extending from the mean.\n- `\"stdev\"`: The size of rule are set to the value of standard deviation, extending from the mean.\n- `\"iqr\"`: Extend the rule to the q1 and q3.\n\n__Default value:__ `\"stderr\"`."
"description": "The extent of the rule. Available options include:\n- `\"ci\"`: Extend the rule to the 95% bootstrapped confidence interval of the mean.\n- `\"stderr\"`: The size of rule are set to the value of standard error, extending from the mean.\n- `\"stdev\"`: The size of rule are set to the value of standard deviation, extending from the mean.\n- `\"iqr\"`: Extend the rule to the q1 and q3.\n\n__Default value:__ `\"stderr\"`."
},
"opacity": {
"description": "The opacity (value between [0,1]) of the mark.",
Expand Down
2 changes: 1 addition & 1 deletion src/compositemark/errorband.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export interface ErrorBandConfig extends ErrorBandPartsMixins {

/**
* The extent of the band. Available options include:
* - `"ci"`: Extend the band to the confidence interval of the mean.
* - `"ci"`: Extend the band to the 95% bootstrapped confidence interval of the mean.
* - `"stderr"`: The size of band are set to the value of standard error, extending from the mean.
* - `"stdev"`: The size of band are set to the value of standard deviation, extending from the mean.
* - `"iqr"`: Extend the band to the q1 and q3.
Expand Down
2 changes: 1 addition & 1 deletion src/compositemark/errorbar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export interface ErrorBarConfig extends ErrorBarPartsMixins {

/**
* The extent of the rule. Available options include:
* - `"ci"`: Extend the rule to the confidence interval of the mean.
* - `"ci"`: Extend the rule to the 95% bootstrapped confidence interval of the mean.
* - `"stderr"`: The size of rule are set to the value of standard error, extending from the mean.
* - `"stdev"`: The size of rule are set to the value of standard deviation, extending from the mean.
* - `"iqr"`: Extend the rule to the q1 and q3.
Expand Down

0 comments on commit 6839bd9

Please sign in to comment.