Skip to content

Jupyter Notebooks

Free software, open standards, and web services for interactive computing across all programming languages

Install

sudo dnf install -y \
  python3-nbformat \
  python3-nbconvert

Docs

Tools

Commands

  • nbconvert: convert a Jupyter notebook to various formats, including markdown

Project layout

notebooks - retri

/notebooks

/data

There are no strict standards for the top-level directories under the /data directory, but a common and effective approach is to organize them based on the data's stage in your workflow. For instance:

  1. /raw: Contains the raw, unprocessed data as it was originally acquired.

  2. /processed: Holds data that has been cleaned, transformed, or otherwise processed for analysis.

  3. /external: For data sourced from outside your organization, like third-party APIs.

  4. /interim: Temporary storage for data that is in the process of being cleaned or transformed.

This structure helps in maintaining clarity about the state and source of your data at any point in your project.A

See also

  • conda: Popular package manager among Jupyter users