Created
April 8, 2017 21:46
-
-
Save abrahamrhoffman/a121d74a20450321f6fb85d5de08214a to your computer and use it in GitHub Desktop.
Pandas
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Pandas ## | |
import pandas as pd | |
TEST = pd.read_csv('test.csv', header=None) | |
TEST.shape | |
TEST.head() | |
TEST.columns.values | |
TEST.head().iloc[0:1] | |
TEST.head().iloc[0:1].values | |
type(TEST.head().iloc[0:1].values) |
Author
abrahamrhoffman
commented
Apr 9, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment