How to import "orange" in ipython notebook?

In an iPython notebook, is it possible for the output to be showed in a different window than the input?

  • Like in R. My main gripe about iPython is that when I run a cell, my notebook automatically scrolls to the bottom of my output, making me temporarily losing my place in the code.

  • Answer:

    I'm not very familiar with R, but you might try the %%capture magic which redirects the output to a variable.  You could then output the contents of that variable to another window. %%capture storage print 'Hello world' storage() >>>Hello world! Also if you double click on the left-hand side of the output cell it will collapse the output.

Steve Brown at Quora Visit the source

Was this solution helpful to you?

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.