Work Flow Proposal

import matplotlib
import matplotlib.pyplot as plt
import numpy as np
import pandas as pd

from IPython.display import display
from PIL import Image

import os
# check for set environment variable JB_NOSHOW
show = True
if 'JB_NOSHOW' in os.environ:
    show = False

Work Flow Proposal#

Setup Description#

The principle idea here is to highlight options of managing ones workflow. Functions that are designed by the user can be stored in a Pyhton script, here called Processing.py, which is imported to the notebook. This workflow helps to keep the active notebook clean from definitions of functions.