---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-11-69857cb9f823> in <module>()
56
57 plt.figure(1)
---> 58 plt.plot(phi, theta, S)
C:\Python34\lib\site-packages\matplotlib\pyplot.py in plot(*args, **kwargs)
3097 ax.hold(hold)
3098 try:
-> 3099 ret = ax.plot(*args, **kwargs)
3100 draw_if_interactive()
3101 finally:
C:\Python34\lib\site-packages\matplotlib\axes\_axes.py in plot(self, *args, **kwargs)
1371 lines = []
1372
-> 1373 for line in self._get_lines(*args, **kwargs):
1374 self.add_line(line)
1375 lines.append(line)
C:\Python34\lib\site-packages\matplotlib\axes\_base.py in _grab_next_args(self, *args, **kwargs)
302 return
303 if len(remaining) <= 3:
--> 304 for seg in self._plot_args(remaining, kwargs):
305 yield seg
306 return
C:\Python34\lib\site-packages\matplotlib\axes\_base.py in _plot_args(self, tup, kwargs)
264 tup = tup[:-1]
265 elif len(tup) == 3:
--> 266 raise ValueError('third arg must be a format string')
267 else:
268 linestyle, marker, color = None, None, None
ValueError: third arg must be a format string