Add lines to analyze.calib_plot().
authorW. Trevor King <wking@drexel.edu>
Sun, 21 Dec 2008 08:42:12 +0000 (03:42 -0500)
committerW. Trevor King <wking@drexel.edu>
Sun, 21 Dec 2008 08:42:12 +0000 (03:42 -0500)
There aren't many points, and line connecting lines increase visibility.

calibcant/analyze.py

index 7fafc04207358afe23c44367fe3eb28a96a90569..a46eddb6a202a2c276346a7a0db77070677305cd 100755 (executable)
@@ -178,13 +178,13 @@ def calib_plot(bumps, Ts, vibs, plotVerbose=False) :
         common._import_pylab()
         common._pylab.figure(config.BASE_FIGNUM+4)
         common._pylab.subplot(311)
-        common._pylab.plot(bumps, 'g.')
+        common._pylab.plot(bumps, 'g.-')
         common._pylab.title('Photodiode sensitivity (V/nm)')
         common._pylab.subplot(312)
-        common._pylab.plot(Ts, 'r.')
+        common._pylab.plot(Ts, 'r.-')
         common._pylab.title('Temperature (K)')
         common._pylab.subplot(313)
-        common._pylab.plot(vibs, 'b.')
+        common._pylab.plot(vibs, 'b.-')
         common._pylab.title('Thermal deflection variance (Volts**2)')
         common._flush_plot()