#!/usr/bin/env python2 from pylab import * params = { 'axes.labelsize': 15, 'text.fontsize': 15, 'legend.fontsize': 15, 'xtick.labelsize': 12, 'ytick.labelsize': 12, #'text.usetex': True, #'figure.figsize': fig_size } rcParams.update(params) def load_data( fname ): f = open( fname ) data = np.loadtxt( f, delimiter=',' ) f.close x, y = zip( *data ) return x, y def plot_kind( k, m, c ): x,y = load..