In [1]:
#This is the MSD .txt output file I'll be working with:
data = open('data.txt')
data.read()
Out[1]:
In [2]:
#Import msd_module
%matplotlib inline
import msd_module
In [3]:
#Check Docstring
msd_module?
In [4]:
project1 = msd_module.msd_96()
In [6]:
project1.create_df('data.txt')
In [7]:
project1.df
Out[7]:
In [8]:
project1.split_plates()
In [9]:
project1.dilution
Out[9]:
In [10]:
project1.create_dilution(5,3,8)
In [11]:
project1.dilution
Out[11]:
In [12]:
project1.split_plates()