MPBA / pyphysio

GNU General Public License v3.0
47 stars 13 forks source link

Load sample data for tests #8

Closed andbiz closed 7 years ago

andbiz commented 7 years ago

Example:

class Asset(object):
    asset = "sample_data/"
    data = load('medical.txt')
    def ecg():
        return(data[:,0])

    def eda():
        return (etc etc)