class ec4py.Step_Data()
– Step data analysis and display.

Basic use:

Import class:

   from ec4py import Step_Data

Load data set:

   data = Step_Data("PATH TO DATA")
   current = data.i #current array
   E = data.E # voltage array
   time = data.Time # time array

Initialization

class ec4py.lsv_data.LSV_Data(Path=None, args, kwargs)

   data = Step_Data() # empty object
   data = Step_Data("PATH TO DATA FILE") # import the data from a file.
   data = Step_Data("PATH TO DATA FILE", IRCORR="R") # import the data from a file and apply iR-correction.

Operators

Step_Data does not support any operators.

Methods and properties

Step_Data inherit from EC_Setup and all properties and function are obtainable.

Step_Data.plot()

Creates a standard plot of a Step data, i.e. current vs time.

   st = Step_Data()
   st.plot()