annotate experiments/scripts/cnbh-syllables/results_plotting/spider_plot.py @ 111:f54d91957fec

- Maybe, just maybe
author tomwalters
date Tue, 14 Sep 2010 01:30:44 +0000
parents 4d408e0d5643
children 97a513bc3bcf
rev   line source
tomwalters@100 1 #!/usr/bin/env python
tomwalters@100 2 """
tomwalters@100 3 spider_plot.py
tomwalters@100 4
tomwalters@100 5 Created by Thomas Walters on 2010-09-12.
tomwalters@100 6 """
tomwalters@100 7
tomwalters@101 8 import sys
tomwalters@101 9 import getopt
tomwalters@110 10 import matplotlib as mpl
tomwalters@111 11 mpl.use('PDF')
tomwalters@100 12 import numpy as np
tomwalters@100 13 import pylab as p
tomwalters@100 14 import mpl_toolkits.mplot3d.axes3d as p3
tomwalters@100 15 from matplotlib import cm
tomwalters@100 16 import matplotlib.ticker as ticker
tomwalters@100 17
tomwalters@101 18 help_message = '''
tomwalters@101 19 Plot the spider.
tomwalters@100 20
tomwalters@101 21 Arguments:
tomwalters@101 22 -i --input_file
tomwalters@101 23 -o --output_file
tomwalters@101 24 '''
tomwalters@100 25
tomwalters@101 26 class Usage(Exception):
tomwalters@101 27 def __init__(self, msg):
tomwalters@101 28 self.msg = msg
tomwalters@100 29
tomwalters@100 30
tomwalters@101 31 def main(argv=None):
tomwalters@101 32 if argv is None:
tomwalters@101 33 argv = sys.argv
tomwalters@101 34 try:
tomwalters@101 35 try:
tomwalters@101 36 opts, args = getopt.getopt(argv[1:], "hi:o:",
tomwalters@101 37 ["help", "input_file=", "output_file="])
tomwalters@101 38 except getopt.error, msg:
tomwalters@101 39 raise Usage(msg)
tomwalters@101 40
tomwalters@101 41 # defaults
tomwalters@101 42 input_file = "results_iteration_15.txt"
tomwalters@111 43 output_file = "results_iteration_15.png"
tomwalters@101 44
tomwalters@101 45 # option processing
tomwalters@101 46 for option, value in opts:
tomwalters@101 47 if option in ("-h", "--help"):
tomwalters@101 48 raise Usage(help_message)
tomwalters@101 49 if option in ("-i", "--input_file"):
tomwalters@101 50 input_file = value
tomwalters@101 51 if option in ("-o", "--output_file"):
tomwalters@101 52 output_file = value
tomwalters@101 53
tomwalters@101 54 except Usage, err:
tomwalters@101 55 print >> sys.stderr, sys.argv[0].split("/")[-1] + ": " + str(err.msg)
tomwalters@101 56 print >> sys.stderr, "\t for help use --help"
tomwalters@101 57 return 2
tomwalters@109 58
tomwalters@109 59 central_vtl=15
tomwalters@109 60 central_vtl_scaling=112.32
tomwalters@109 61
tomwalters@101 62 # Read in a file with lines in the form
tomwalters@101 63 # Pitch Scale Percentage
tomwalters@101 64 xs=[]
tomwalters@101 65 ys=[]
tomwalters@101 66 zs=[]
tomwalters@101 67 f = open(input_file, 'r')
tomwalters@101 68 for line in f:
tomwalters@101 69 if line[0] != "#":
tomwalters@101 70 values = line.strip().split(' ')
tomwalters@101 71 xs.append(central_vtl*central_vtl_scaling/float(values[1]))
tomwalters@101 72 ys.append(float(values[0]))
tomwalters@101 73 zs.append(float(values[2]))
tomwalters@100 74
tomwalters@100 75
tomwalters@101 76 # Define a tiny sphere, centered on the origin, which
tomwalters@101 77 # we'll shift to the desired position.
tomwalters@101 78 u=np.r_[0:2*np.pi:50j]
tomwalters@101 79 v=np.r_[0:np.pi:50j]
tomwalters@101 80 sx=0.01*np.outer(np.cos(u),np.sin(v))
tomwalters@101 81 sy=0.01*np.outer(np.sin(u),np.sin(v))
tomwalters@101 82 sz=2.5*np.outer(np.ones(np.size(u)),np.cos(v))
tomwalters@100 83
tomwalters@101 84 fig=p.figure()
tomwalters@101 85 ax = p3.Axes3D(fig, azim=-80, elev=60)
tomwalters@100 86
tomwalters@101 87 colormap = cm.get_cmap('jet', 100)
tomwalters@100 88
tomwalters@101 89 # Note: here I fake out the lack of proper logarihmic scales on 3D axes in
tomwalters@101 90 # matplotlib by just plotting log values on a linear scale and renaming
tomwalters@101 91 # the labels.
tomwalters@101 92 # (This doesn't work: ax.w_yaxis.set_scale('log') ax.w_xaxis.set_scale('log'))
tomwalters@100 93
tomwalters@101 94 # Plot the values seven at a time as dark lines.
tomwalters@101 95 # These are the individual spokes of the spoke pattern.
tomwalters@101 96 n=7
tomwalters@101 97 for i in xrange(0,8):
tomwalters@101 98 ax.plot(np.log(xs[i*n:(i+1)*n]), np.log(ys[i*n:(i+1)*n]), zs[i*n:(i+1)*n], color=[0,0,0])
tomwalters@100 99
tomwalters@101 100 for x,y,z in zip(xs,ys,zs):
tomwalters@101 101 ax.plot(np.log([x, x]), np.log([y, y]), [z, 0], color=[0.8,0.8,0.8])
tomwalters@101 102 ax.plot_surface(sx+np.log(x),sy+np.log(y),sz+z, color=colormap(int(z)), linewidth=0)
tomwalters@100 103
tomwalters@101 104 ax.set_ylabel('GPR/Hz')
tomwalters@101 105 ax.set_xlabel('VTL/cm')
tomwalters@101 106 ax.set_zlabel('Percent correct')
tomwalters@101 107 ax.set_ylim3d(np.log([131,225]))
tomwalters@101 108 ax.set_xlim3d(np.log([9.9, 22.1]))
tomwalters@101 109 ax.set_zlim3d([-1, 101])
tomwalters@101 110 ax.w_zaxis.set_major_locator(ticker.FixedLocator([0, 20, 40, 60, 80, 100]))
tomwalters@100 111
tomwalters@101 112 ax.w_xaxis.set_major_locator(ticker.FixedLocator(np.log([10,15,22])))
tomwalters@101 113 ax.w_xaxis.set_ticklabels(['10', '15', '22'])
tomwalters@101 114 ax.w_yaxis.set_major_locator(ticker.FixedLocator(np.log([132, 172, 224])))
tomwalters@101 115 ax.w_yaxis.set_ticklabels(['132', '172', '224'])
tomwalters@100 116
tomwalters@101 117 #for a in ax.w_xaxis.get_ticklines()+ax.w_xaxis.get_ticklabels():
tomwalters@101 118 # a.set_visible(False)
tomwalters@100 119
tomwalters@101 120 #for a in ax.w_yaxis.get_ticklines()+ax.w_yaxis.get_ticklabels():
tomwalters@101 121 # a.set_visible(False)
tomwalters@101 122
tomwalters@101 123
tomwalters@101 124 #p.show()
tomwalters@111 125 p.savefig(output_file)
tomwalters@101 126
tomwalters@108 127 if __name__ == "__main__":
tomwalters@111 128 sys.exit(main())