parser.add_option("--magnitude-ranges",metavar="list",type=str,help="List of limits for magnitude plots. Semicolons separate ranges for different plots, and commas separate the min and max of a single plot.")
parser.add_option("--phase-ranges",metavar="list",type=str,help="List of limits for phase plots. Semicolons separate ranges for different plots, and commas separate the min and max of a single plot.")
parser.add_option("--plot-titles",metavar="names",type=str,help="Semicolon-separated list of titles for plots")
parser.add_option("--show-stats",action="store_true",help="If set, averages and standard deviations will be shown in the plot legends.")
options,filenames=parser.parse_args()
...
...
@@ -202,8 +203,10 @@ for i in range(0, len(freq_list)):