matplotlib&seaborn
%matplotlib inline , UsageError: unrecognized arguments 해결하기!
오늘은 집
2021. 11. 28. 21:53
In [1] 번 같은 에러가 떴다면 그냥 옆에있는 주석을 삭제하면 된다.
그럼 In [2] 처럼 문제없이 실행되는 것을 볼 수 있다.
참고자료
https://stackoverflow.com/questions/27761707/cannot-plot-inline-with-ipython-notebook
Cannot plot inline with ipython notebook
I'm playing with ipython notebook and I got a problem. This code %matplotlib inlinehelped me to plot inline with the code below. %matplotlib inline ax1= plt.subplot(2,1,1) ax1.plot(df.Close,la...
stackoverflow.com
이곳을 보면 자세한 설명이 있으니 참고하길 바란다.