From c34b968256e7e6f9684cc9fa65dbe1e167a52582 Mon Sep 17 00:00:00 2001 From: Chung_es <44948482+euisuk-chung@users.noreply.github.com> Date: Wed, 4 Dec 2024 12:52:29 +0900 Subject: [PATCH] Update pandas_snippets.md --- snippets/pandas_snippets.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/snippets/pandas_snippets.md b/snippets/pandas_snippets.md index c502a18..f80f2fb 100644 --- a/snippets/pandas_snippets.md +++ b/snippets/pandas_snippets.md @@ -24,6 +24,11 @@ ``` ## 기본 데이터 조작 +- Jupyter Notebook에서의 display() + ```python + from IPython.display import display + display(f_cor) + ``` - 데이터프레임의 첫 n개 행 보기 ```python