Last active
January 3, 2020 01:12
-
-
Save OneGneissGuy/e4fa61580f6dc1033936f6e5f50a0f40 to your computer and use it in GitHub Desktop.
script to read an EXO KOR version 2 exported csv file
This file contains 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
import pandas as pd | |
def read_exo_korv2(fname): | |
df = pd.read_csv(fname, skiprows=9, encoding="UTF-16", parse_dates=[[0,1]], | |
index_col=0, keep_date_col=False) | |
return df | |
datafile = r'./KOR_measurement_file_some_date.csv' | |
df = read_exo_korv2(datafile) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment