You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can set additional `tags` like a [caption](https://datatables.net/blog/2014-11-07) on the table with the `tags` option:
97
+
98
+
```{code-cell}
99
+
show(df, tags='<caption>Countries from the World Bank Database</caption>')
100
+
```
101
+
102
+
The position of the caption can be set explicitly as in the datatables example above (note that the default position may depend on how you render the notebook):
103
+
```{code-cell}
104
+
show(df, tags='<caption style="caption-side: top">Countries from the World Bank Database</caption>')
105
+
```
106
+
94
107
## Float precision
95
108
96
109
Floats are rounded using `pd.options.display.float_format`. Please change that format according to your preference.
0 commit comments