Skip to content

Commit 99af406

Browse files
author
wjm41
committed
renamed symbol_col
1 parent 3a38610 commit 99af406

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ app.run_server(mode='inline', port=8700, height=1000)
6363
| `caption_cols` | `list` | `None` | list of column names in df to be included in the hover box |
6464
| `caption_transform` | `dict` | `{}` | Functions applied to captions for formatting. The dict must follow a key: function structure where the key must correspond to one of the columns in subset or tooltip |
6565
| `color_col` | `str` | `None` | name of the column in df that is used to color the datapoints in `df` - necessary when there is discrete conditional coloring |
66-
| `marker_col` | `str` | `None` | name of the column in df that is used to determine the marker shape of the datapoints in `df` |
66+
| `symbol_col` | `str` | `None` | name of the column in df that is used to determine the marker shape of the datapoints in `df` |
6767
| `wrap` | `bool` | `True` | whether or not to wrap the title text to multiple lines if the length of the text is too long |
6868
| `wraplen` | `int` | `20` | the threshold length of the title text before wrapping begins - adjust when changing the width of the hover box |
6969
| `width` | `int` | `150` | the width in pixels of the hover box |

examples/simple_usage_and_formatting.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4728,7 +4728,7 @@
47284728
" smiles_col='smiles',\n",
47294729
" title_col='Compound ID',\n",
47304730
" color_col='dataset',\n",
4731-
" marker_col='Minimum Degree')\n",
4731+
" symbol_col='Minimum Degree')\n",
47324732
"\n",
47334733
"app_marker.run_server(mode='inline', port=8801, height=1000)\n"
47344734
]

0 commit comments

Comments
 (0)