Write a normal notebook
Build the analysis in JupyterLab or MLJAR Studio exactly as you normally would. Use regular Python cells, Markdown, DataFrames, charts, and your preferred libraries.
Why: Mercury works with the notebook you already have. There is no application scaffold to create first.
import pandas as pdimport pandas as pddf = pd.read_csv("sales.csv")df = pd.read_csv("sales.csv")df.groupby("region").sum()df.groupby("region").sum()






