Skip to content

Instantly share code, notes, and snippets.

@rightx2
Created July 12, 2020 10:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rightx2/5ce80a189eacdf2367e764f773339c60 to your computer and use it in GitHub Desktop.
Save rightx2/5ce80a189eacdf2367e764f773339c60 to your computer and use it in GitHub Desktop.
수업 진행 시, 가장 먼저 실행해야 하는 코드
import numpy as np
import pandas as pd
from IPython.core.interactiveshell import InteractiveShell
InteractiveShell.ast_node_interactivity = "all"
pd.set_option('display.float_format', lambda x: '%.3f' % x)
pd.set_option('max_columns', None)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment