Skip to content

Instantly share code, notes, and snippets.

@jaecheoljung
Last active June 23, 2021 08:43
Show Gist options
  • Save jaecheoljung/7aac07411b1a33923cb56f16cb0f35e4 to your computer and use it in GitHub Desktop.
Save jaecheoljung/7aac07411b1a33923cb56f16cb0f35e4 to your computer and use it in GitHub Desktop.
Acquire data
# Pandas DataFrame을 사용
train_df = pd.read_csv('../input/train.csv')
test_df = pd.read_csv('../input/test.csv')
combine = [train_df, test_df]
train_df.head()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment