sciPlots Namespace Reference

Functions

def plotSigAndESS (sigAndESS)
 

Variables

dictionary params = {'lines.linewidth': 1.5,'backend': 'ps','axes.labelsize': 18, 'axes.titlesize': 18, 'font.size': 18, 'legend.fontsize': 10.5,'xtick.labelsize': 15,'ytick.labelsize': 15,'text.usetex': True,'font.family': 'serif','legend.edgecolor': 'k','legend.fancybox':False}
 

Function Documentation

◆ plotSigAndESS()

def sciPlots.plotSigAndESS (   sigAndESS)
19 def plotSigAndESS(sigAndESS):
20  fig = plt.figure(figsize=(18/2.54,12.5/2.54))
21  sigAndESS = np.array(sigAndESS)
22  plt.plot(sigAndESS[:,0],sigAndESS[:,1],'k')
23  plt.xlabel(r'$\sigma$',labelpad=12); plt.ylabel(r'$ESS$',labelpad=16)
24  plt.xlim(0,sigAndESS[0,0])
25  plt.grid(True); plt.tight_layout();
26  plt.savefig('sigAndESS.pdf',dpi=600); plt.show()
def plotSigAndESS(sigAndESS)
Definition: sciPlots.py:19

Variable Documentation

◆ params

dictionary sciPlots.params = {'lines.linewidth': 1.5,'backend': 'ps','axes.labelsize': 18, 'axes.titlesize': 18, 'font.size': 18, 'legend.fontsize': 10.5,'xtick.labelsize': 15,'ytick.labelsize': 15,'text.usetex': True,'font.family': 'serif','legend.edgecolor': 'k','legend.fancybox':False}