Skip to content

Commit e1c30b8

Browse files
committed
update df.applymap -> df.map in style.ipynb
1 parent 69f7c08 commit e1c30b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/source/user_guide/style.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@
352352
"\n",
353353
"- Using [.set_table_styles()][table] to control broader areas of the table with specified internal CSS. Although table styles allow the flexibility to add CSS selectors and properties controlling all individual parts of the table, they are unwieldy for individual cell specifications. Also, note that table styles cannot be exported to Excel. \n",
354354
"- Using [.set_td_classes()][td_class] to directly link either external CSS classes to your data cells or link the internal CSS classes created by [.set_table_styles()][table]. See [here](#Setting-Classes-and-Linking-to-External-CSS). These cannot be used on column header rows or indexes, and also won't export to Excel. \n",
355-
"- Using the [.apply()][apply] and [.applymap()][applymap] functions to add direct internal CSS to specific data cells. See [here](#Styler-Functions). As of v1.4.0 there are also methods that work directly on column header rows or indexes; [.apply_index()][applyindex] and [.applymap_index()][applymapindex]. Note that only these methods add styles that will export to Excel. These methods work in a similar way to [DataFrame.apply()][dfapply] and [DataFrame.applymap()][dfapplymap].\n",
355+
"- Using the [.apply()][apply] and [.applymap()][applymap] functions to add direct internal CSS to specific data cells. See [here](#Styler-Functions). As of v1.4.0 there are also methods that work directly on column header rows or indexes; [.apply_index()][applyindex] and [.applymap_index()][applymapindex]. Note that only these methods add styles that will export to Excel. These methods work in a similar way to [DataFrame.apply()][dfapply] and [DataFrame.map()][dfmap].\n",
356356
"\n",
357357
"[table]: ../reference/api/pandas.io.formats.style.Styler.set_table_styles.rst\n",
358358
"[styler]: ../reference/api/pandas.io.formats.style.Styler.rst\n",
@@ -362,7 +362,7 @@
362362
"[applyindex]: ../reference/api/pandas.io.formats.style.Styler.apply_index.rst\n",
363363
"[applymapindex]: ../reference/api/pandas.io.formats.style.Styler.applymap_index.rst\n",
364364
"[dfapply]: ../reference/api/pandas.DataFrame.apply.rst\n",
365-
"[dfapplymap]: ../reference/api/pandas.DataFrame.applymap.rst"
365+
"[dfmap]: ../reference/api/pandas.DataFrame.map.rst"
366366
]
367367
},
368368
{

0 commit comments

Comments
 (0)