Jupyter is a
for interactive computing across all programming languages.
Very powerful tool to produce reproducible code and analyses:
Powerful interactive shells:
Terminal - jupyter console
Qt-based - jupyter qtconsole
Notebooks - jupyter notebook
or jupyter lab
Jupyter is an open-source project that provides open-standards, and services for interactive computing across dozens of programming languages, including Python
, R
, Stata
and many others used by economists.
# Import display options for showing websites
from IPython.display import IFrame
url = 'https://commonmark.org/help/'
IFrame(url, width=800, height=400)