Skip to content

Instantly share code, notes, and snippets.

@mmagnuski
Created March 7, 2017 21:50
Show Gist options
  • Save mmagnuski/6780f703fc1b3bdeb01ec7b7502c358e to your computer and use it in GitHub Desktop.
Save mmagnuski/6780f703fc1b3bdeb01ec7b7502c358e to your computer and use it in GitHub Desktop.
import os
import pandas as pd
PTH = r'C:\Users\Ola\Downloads\muse'
fls = os.listdir(PTH)
muse = pd.read_csv(op.join(PTH, fls[0]))
raws = [col for col in muse.columns if 'RAW' in col]
muse.TimeStamp = pd.to_datetime(muse.TimeStamp)
muse.loc[:, raws].plot()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment