Skip to content

Instantly share code, notes, and snippets.

@amankharwal
Created November 19, 2020 05:45
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 amankharwal/1e8dcb56d1ed5a3a3c0ca59676268df1 to your computer and use it in GitHub Desktop.
Save amankharwal/1e8dcb56d1ed5a3a3c0ca59676268df1 to your computer and use it in GitHub Desktop.
import numpy as np # linear algebra
import pandas as pd # data processing
df0 = pd.read_csv("emg-4/0.csv", header=None )
df1 = pd.read_csv("emg-4/1.csv", header=None )
df2 = pd.read_csv("emg-4/2.csv", header=None )
df3 = pd.read_csv("emg-4/3.csv", header=None )
df = pd.concat([df0,df1,df2,df3], axis = 0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment