long job names (40 char) no respa for D amino
[django_unres.git] / files / plot_saxs.py
index d1ff7f6..834e842 100755 (executable)
@@ -9,6 +9,9 @@ import numpy as np
 import sys
 import os.path
 
+matplotlib.rc('font', size=15)
+matplotlib.rc('legend', fontsize=15)
+
 x,y= np.loadtxt('saxs.data',usecols=(0,1),unpack=True)
 x1,y1= np.loadtxt('MODEL1_saxs.data',usecols=(0,2),unpack=True)
 x2,y2= np.loadtxt('MODEL2_saxs.data',usecols=(0,2),unpack=True)
@@ -18,7 +21,7 @@ x5,y5= np.loadtxt('MODEL5_saxs.data',usecols=(0,2),unpack=True)
 
 
 plt.clf()
-plt.xlabel('r')
+plt.xlabel(r'r [$\AA$]')
 plt.ylabel('P(r)')
 plt.xlim(x[0], x[-1])
 plt.plot(x,y,'-',color='black')