About 1,180,000 results
Open links in new tab
  1. What is the difference between Jupyter Notebook and JupyterLab?

    Jun 22, 2018 · Jupyter Notebook v7 is the next fully supported version of Jupyter Notebook. It is based on RetroLab (formerly JupyterLab classic), which means it shares the same internals as …

  2. python - Variable Explorer in Jupyter Notebook - Stack Overflow

    Jun 9, 2016 · If you use Jupyter Notebooks within Jupyter Lab there has been a lot of discussion about implementing a variable explorer/inspector. You can follow the issue here. As of right …

  3. How can I add a table of contents to a Jupyter / JupyterLab …

    At the time being, this can either be done manually as in Matt Dancho's answer, or automatically via the toc2 jupyter notebook extension in the classic notebook interface. First, install toc2 as …

  4. How to fix "'jupyter' is not recognized as an internal or external ...

    $ jupyter notebook [I 19:05:30.459 NotebookApp] Serving notebooks from local directory: [I 19:05:30.459 NotebookApp] 0 active kernels [I 19:05:30.459 NotebookApp] The Jupyter …

  5. Comment/Uncomment multiple lines in JupyterNotebook hotkey

    May 12, 2021 · I was wondering, if there is a PRO way of commenting/removing multiline # comments in JupyterNotebooks. # line1 # line2 # line3 Something like SHIFT + " for …

  6. Jupyter Notebook: interactive plot with widgets - Stack Overflow

    Jupyter version info: The version of the notebook server is 4.3.1 and is running on Python 3.6.6, IPython ...

  7. How to recover deleted Jupyter notebook cell? - Stack Overflow

    Jun 12, 2019 · My Jupyter Notebook doesn't have "Undo Delete Cells", shortcuts sometimes go wrong if done incorrectly, and a solution that works on any operating system may be more …

  8. Make 3D plot interactive in Jupyter Notebook - Stack Overflow

    I use Jupyter Notebook to make analysis of datasets. There are a lot of plots in the notebook, and some of them are 3d plots. I'm wondering if it is possible to make the 3d plot interactive, so I …

  9. What is the difference between ! and % in Jupyter notebooks?

    Aug 20, 2017 · The exclamation mark (!) executes shell commands within a Jupyter Notebook cell when you type (!) followed by a shell command, Jupyter Notebook sends the command to the …

  10. Reading xlsx file using jupyter notebook - Stack Overflow

    Oct 6, 2017 · import pandas as pd df = pd.read_excel('file_name.xlsx', 'Sheet1') df *you must import your .xlsx file into the Jupyter notebook file... *you may also import it into a Github …