Skip to content

Commit

Permalink
Add "optional" re data.group in docs for several charts
Browse files Browse the repository at this point in the history
  • Loading branch information
kbroman committed May 18, 2016
1 parent c4aa4c2 commit b591209
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion doc/Source/add_curves.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The data is an associative array with a set of vectors, all of the same length:
- `y` — y variable as a two-dimensional array (potentially
ragged), indexed like `y[ind][obs]`
- `indID` — individual IDs (optional)
- `group` — category in 1,2,3,... (for determining point color)
- `group` — category in 1,2,3,... (for determining point color, optional)

If `data.x` has length 1, it is then expanded to have the same length
as `data.y`, in which case each row of `data.y` needs to have the same
Expand Down
2 changes: 1 addition & 1 deletion doc/Source/add_points.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The data is an associative array with a set of vectors, all of the same length:
- `x` — x variable
- `y` — y variable
- `indID` — individual IDs (optional)
- `group` — category in 1,2,3,... (for determining point color)
- `group` — category in 1,2,3,... (for determining point color, optional)

### Example

Expand Down
2 changes: 1 addition & 1 deletion doc/Source/curvechart.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The data is an associative array with a set of vectors, all of the same length:
- `y` — y variable as a two-dimensional array (potentially
ragged), indexed like `y[ind][obs]`
- `indID` — individual IDs (optional)
- `group` — category in 1,2,3,... (for determining point color)
- `group` — category in 1,2,3,... (for determining point color, optional)

If `data.x` has length 1, it is then expanded to have the same length
as `data.y`, in which case each row of `data.y` needs to have the same
Expand Down
2 changes: 1 addition & 1 deletion doc/Source/scatterplot.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The data is an associative array with a set of vectors, all of the same length:
- `x` — x variable
- `y` — y variable
- `indID` — individual IDs (optional)
- `group` — category in 1,2,3,... (for determining point color)
- `group` — category in 1,2,3,... (for determining point color, optional)

### Example

Expand Down
2 changes: 1 addition & 1 deletion doc/Source/trichart.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Scatterplot of trinomial probabilities
The data is an associative array with a set of vectors, all of the same length:
- `p` — an array of length-3 arrays
- `indID` — individual IDs (optional)
- `group` — category in 1,2,3,... (for determining point color)
- `group` — category in 1,2,3,... (for determining point color, optional)

### Example

Expand Down
2 changes: 1 addition & 1 deletion doc/add_curves.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ The data is an associative array with a set of vectors, all of the same length:
- `y` — y variable as a two-dimensional array (potentially
ragged), indexed like `y[ind][obs]`
- `indID` — individual IDs (optional)
- `group` — category in 1,2,3,... (for determining point color)
- `group` — category in 1,2,3,... (for determining point color, optional)

If `data.x` has length 1, it is then expanded to have the same length
as `data.y`, in which case each row of `data.y` needs to have the same
Expand Down
2 changes: 1 addition & 1 deletion doc/add_points.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ The data is an associative array with a set of vectors, all of the same length:
- `x` — x variable
- `y` — y variable
- `indID` — individual IDs (optional)
- `group` — category in 1,2,3,... (for determining point color)
- `group` — category in 1,2,3,... (for determining point color, optional)

### Example

Expand Down
2 changes: 1 addition & 1 deletion doc/curvechart.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ The data is an associative array with a set of vectors, all of the same length:
- `y` — y variable as a two-dimensional array (potentially
ragged), indexed like `y[ind][obs]`
- `indID` — individual IDs (optional)
- `group` — category in 1,2,3,... (for determining point color)
- `group` — category in 1,2,3,... (for determining point color, optional)

If `data.x` has length 1, it is then expanded to have the same length
as `data.y`, in which case each row of `data.y` needs to have the same
Expand Down
2 changes: 1 addition & 1 deletion doc/scatterplot.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ The data is an associative array with a set of vectors, all of the same length:
- `x` — x variable
- `y` — y variable
- `indID` — individual IDs (optional)
- `group` — category in 1,2,3,... (for determining point color)
- `group` — category in 1,2,3,... (for determining point color, optional)

### Example

Expand Down
2 changes: 1 addition & 1 deletion doc/trichart.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Scatterplot of trinomial probabilities
The data is an associative array with a set of vectors, all of the same length:
- `p` — an array of length-3 arrays
- `indID` — individual IDs (optional)
- `group` — category in 1,2,3,... (for determining point color)
- `group` — category in 1,2,3,... (for determining point color, optional)

### Example

Expand Down

0 comments on commit b591209

Please sign in to comment.