Grouped bar chart (JavaScript + Plotly)
Paste into the Code editor's JavaScript mode: Full guide →
const cats = ['Group A', 'Group B', 'Group C'];
const data = [
{ x: cats, y: [42, 67, 55], type: 'bar', name: 'Series 1' },
{ x: cats, y: [38, 71, 49], type: 'bar', name: 'Series 2' }
];
Plotly.newPlot(chart, data, { barmode: 'group' });Scatter plot from a CSV (Python notebook)
Two cells in the notebook — load, then plot: Full guide →
# Cell 1 — load
import numpy as np
data = np.loadtxt("measurements.csv", delimiter=",")
# Cell 2 — plot
import matplotlib.pyplot as plt
plt.scatter(data[:, 0], data[:, 1], s=8)Method flowchart (Diagram tab)
Paste into the Diagram tab to get a decision flowchart: Full guide →
A[Collect data] --> B[Fit model]
B --> C{Good fit?}
C -->|Yes| D[Report parameters]
C -->|No| ABibliography that renders on compile (LaTeX)
The minimal preamble for a working reference list: Full guide →
\usepackage[style=numeric]{biblatex}
\addbibresource{refs.bib}
% …
\printbibliography