Skip to content

Instantly share code, notes, and snippets.

@OneGneissGuy
Last active January 3, 2020 01:12
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 OneGneissGuy/e4fa61580f6dc1033936f6e5f50a0f40 to your computer and use it in GitHub Desktop.
Save OneGneissGuy/e4fa61580f6dc1033936f6e5f50a0f40 to your computer and use it in GitHub Desktop.
script to read an EXO KOR version 2 exported csv file
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