내 축이 어떤 이유로 plt.show()와 플로팅되지 않습니다에 표시되지,이 오류 메시지입니다 : 나는 어떤을 찾을 수 없습니다축 파이썬 plt.show()
---------------------------------------------------------------------------
OSError Traceback (most recent call last)
/Users/iMacHome/Library/Enthought/Canopy_64bit/User/lib/python2.7/site-packages/matplotlib/artist.pyc in draw_wrapper(artist, renderer, *args, **kwargs)
52 def draw_wrapper(artist, renderer, *args, **kwargs):
53 before(artist, renderer)
---> 54 draw(artist, renderer, *args, **kwargs)
55 after(artist, renderer)
56
/Applications/Canopy.app/appdata/canopy-1.1.0.1371.macosx-x86_64/Canopy.app/Contents/lib/python2.7/subprocess.pyc in _execute_child(self, args, executable, preexec_fn, close_fds, cwd, env, universal_newlines, startupinfo, creationflags, shell, p2cread, p2cwrite, c2pread, c2pwrite, errread, errwrite)
1247 if fd is not None:
1248 os.close(fd)
-> 1249 raise child_exception
1250
1251
OSError: [Errno 2] No such file or directory
이 문제를 해결하기위한 정보 ... 도와주세요!
어떤 백엔드를 사용하고 있습니까? – astrofrog
@astrofrog 저는 Python 2.7과 함께 IPython 노트북 설정을 사용하고 있습니다. 나는 3.4로 업그레이드하고 싶었지만, IPython을 업데이트 할 때 사물의 숨겨진 캐노피 측면에서는 작동하지 않습니다. 그것은 swop 열 코드를 추가하기 전에 작동했습니다 : data = np.array (data), np.column_stack ((data [:, 1], data [:, 0])). 데이터는 축과 제목없이 완벽하게 그려집니다. 이상한 ... – user3125347