Skip to content

Commit

Permalink
center table columns so they look a little nicer
Browse files Browse the repository at this point in the history
  • Loading branch information
nickzoic committed Nov 6, 2023
1 parent d6a951b commit 43f3c79
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/included-plugins/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,15 +96,15 @@ Groups data by one or more columns, and aggregates the rest of the columns.
For each column of the input, select either "Index" or zero or more aggregation functions.

| `name` | `score` |
|---|---|
|:---:|:---:|
| `A` | `7` |
| `A` | `8` |
| `B` | `9` |

For example the above can be indexed by `name` and both count and mean evaluated for `score`, resulting in:

| `name` | `score__count` | `score__mean` |
|---|---|---|
|:---:|:---:|:---:|
| `A` | `2` | `7.5` |
| `B` | `1` | `9` |

Expand All @@ -128,7 +128,7 @@ Drop Column
The "required" flag on the input datatables lets you select the type of join:

| Input 1 Required | Input 2 Required | Type of Join |
|---|---|---|
|:---:|:---:|:---:|
||| Inner |
||| Left |
||| Right |
Expand All @@ -153,7 +153,7 @@ The result will have one row per Index value, with each of the "Expand" columns
For example this data set:

| `variant` | `replicate` | `count` |
|---|---|---|
|:---:|:---:|:---:|
| `1` | `2` | `3` |
| `1` | `4` | `5` |
| `2` | `2` | `6` |
Expand All @@ -164,7 +164,7 @@ For example this data set:
when pivoted with index on Variant, pivot on Replicate and expanding Count becomes:

| `variant` | `count__replicate_2` | `count__replicate_4` | `count__replicate_7` |
|---|---|---|---|
|:---:|:---:|:---:|:---:|
| `1` | `3` | `5` | `0` |
| `2` | `6` | `0` | `8` |
| `3` | `0` | `0` | `19` |
Expand Down

0 comments on commit 43f3c79

Please sign in to comment.