Published
Edited
Jun 29, 2019
1 fork
Importers
11 stars
Insert cell
Insert cell
Insert cell
Desmos = {
const key = "dcb31709b452b1cf9dc26972add0fda6"; // demo API key
const url = `https://www.desmos.com/api/v1.3/calculator.js?apiKey=${key}`;
return require(url).catch(() => window.Desmos); }
Insert cell
{
const height = 500;
const view = html`<div style="width: ${width}px; height: ${height}px;">`;
const calculator = Desmos.GraphingCalculator(view);
invalidation.then(() => calculator.destroy()); // clean up if we re-render this cell
calculator.setExpression({
latex: `\\sin \\frac{\\pi}{x}` });
calculator.setMathBounds({ left: -2, right: 2, bottom: -1.5, top: 1.5 });
return view;
}
Insert cell
Insert cell
Graph = function (cell_invalidation, size, mathbounds, ...expressions) {
const [width, height] = size;
const [left, right, bottom, top] = mathbounds;
const view = html`<div style="width: ${width}px; height: ${height}px;">`;
const calculator = Desmos.GraphingCalculator(view);
cell_invalidation.then(() => calculator.destroy());
calculator.setExpressions(expressions);
calculator.setMathBounds({ left, right, bottom, top });
view.value = calculator;
return view;
}
Insert cell
viewof fresnel = Graph(invalidation, [width, 500], [-.3, 1.3, -.1, 1.1], {
latex: String.raw`\left(
\int_0^t \cos u^2 du,
\int_0^t \sin u^2 du
\right)`,
parametricDomain: {min: 0, max: 6},
color: '#c4238f'
})
Insert cell
Insert cell
fresnel.getState()
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more