I'm using spyder and pycharm for python coding. When I plot something with matplotlib in spyder it shows the result inline in IPython. With Pycharm IPython plots in a new extra window. I'm working on Windows7 and with Anaconda Python2.7.
Is it possible to plot in Pycharm inside in the IPython shell?



Not inside the shell; however, you can use an iPython notebook within PyCharm (2016+) for that purpose. PyCharm supports iPython plots when defined within a
.ipynb(iPython/Jupyter file format) script.Here is an example: Open, or create (as shown) a
.ipynbscript:An here is what you get if you code inside a freshly made
.ipynbfile within PyCharm 2016 or later. Notice the%matplotlib inline, which comes aftermatplotlib.pyplotimport.