From 469e5306e14679e74d5dfc8bc3b300d940283b14 Mon Sep 17 00:00:00 2001 From: Umar Farooq Ghumman Date: Fri, 25 Oct 2024 08:39:28 -0500 Subject: [PATCH] Update user_guide_full_stack_vdataframe_magic.rst --- docs/source/user_guide_full_stack_vdataframe_magic.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/user_guide_full_stack_vdataframe_magic.rst b/docs/source/user_guide_full_stack_vdataframe_magic.rst index 3683f2650..1e440932d 100644 --- a/docs/source/user_guide_full_stack_vdataframe_magic.rst +++ b/docs/source/user_guide_full_stack_vdataframe_magic.rst @@ -286,13 +286,13 @@ To access a single row, we just have to specify the index. .. code-block:: python - titanic[0] + titanic[0:1] .. ipython:: python :suppress: :okwarning: - res = titanic[0] + res = titanic[0:1] html_file = open("SPHINX_DIRECTORY/figures/ug_fs_table_vdfm_15.html", "w") html_file.write(res._repr_html_()) html_file.close()