본문 바로가기
컴퓨터쟁이/Python

python plot image pop up

by 빙글빙글이 2021. 1. 20.
728x90
반응형
import pandas as pd 
import numpy as np 
import matplotlib.pyplot as plt
%matplotlib inline

팝업으로 그림을 보고 싶으면 qt를 하시구요

When you want to have plot popout, just do this:

 

%matplotlib qt

 

 

쥬피터 노트북 내에서 보려면 inline을 쓰시면 됩니다.

You can switch back to inline mode again by doing:

 

%matplotlib inline

728x90
반응형