Public
Edited
Sep 27, 2024
Importers
3 stars
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
formatNumber(1234.123456789)
Insert cell
formatCurrency(1234.123456789)
Insert cell
roundCurrency(1234.123456789)
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
randomFloat()
Insert cell
Insert cell
randomIndex(['a', 'b', 'c', 'd'])
Insert cell
Insert cell
randomValue(['a', 'b', 'c', 'd'])
Insert cell
Insert cell
Insert cell
Insert cell
seededRandomFloat('2023-01-01')
Insert cell
Insert cell
seededRandomIndex('2023-01-01', ['a', 'b', 'c', 'd'])
Insert cell
Insert cell
seededRandomValue('2023-01-01', ['a', 'b', 'c', 'd'])
Insert cell
Insert cell
Insert cell
shuffleSeeded(_.range(0, 10), new Date())
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
plot([sin, cos], [-pi * 2, pi * 2])
Insert cell
plot(
[
pow,
(x) => pow(x, 1.2),
(x) => pow(x, 1.4),
(x) => pow(x, 1.6),
root
],
[0, 20]
)
Insert cell
plot('0.5x^2 + 4x +2')
Insert cell
plot("0.75x^2 + 4x +2", [-3, 2])
Insert cell
plot(["0.75x^2 + 4x +2", "x^2 + 3x + 2"], [-3, 2], true)
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
fibonaccis(14)
Insert cell
fibonacci(14)
Insert cell
Insert cell
Insert cell
Insert cell
nextPrime(7)
Insert cell
Insert cell
primes(10)
Insert cell
primes(5, 100000)
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
min(2, 4, 8)
Insert cell
Insert cell
max(2, 4, 8)
Insert cell
Insert cell
abs(-90)
Insert cell
abs(-90, 20, -20)
Insert cell
Insert cell
Insert cell
round(2.1)
Insert cell
Insert cell
roundDown(2.8)
Insert cell
Insert cell
roundUp(2.2)
Insert cell
Insert cell
Insert cell
Insert cell
roundTo(pi, 0.01)
Insert cell
roundTo(82839, 1000)
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
toDigit(123000, 1000)
Insert cell
Insert cell
toDigit(0.0123456, 0.001)
Insert cell
toDigit(0.0123456, 0.001, 2)
Insert cell
toDigit(0.0123456, ten(-6), 0)
Insert cell
Insert cell
Insert cell
Insert cell
_example_x * 0.2
Insert cell
fix(_example_x * 0.2)
Insert cell
fix = stabilizeNumber
Insert cell
stabilizeNumber = (num) => {
// return parseFloat(num).toPrecision(12);
return roundTo(num, 0.00000000000001)
}
Insert cell
Insert cell
Insert cell
Insert cell
pow(2)
Insert cell
pow(3, 4)
Insert cell
Insert cell
Insert cell
Insert cell
two(6)
Insert cell
Insert cell
eight(4)
Insert cell
Insert cell
ten(3)
Insert cell
thousand = ten(3)
Insert cell
million = ten(6)
Insert cell
billion = ten(9)
Insert cell
trillion = ten(12)
Insert cell
Insert cell
Insert cell
Insert cell
root(4)
Insert cell
root(81, 4)
Insert cell
Insert cell
Insert cell
sum(1, 2, 3, 4)
Insert cell
Insert cell
Insert cell
sums(1, 2, 3, 4)
Insert cell
Insert cell
Σ = sigma
Insert cell
Insert cell
sigma(1, 10, (i) => { return i * 2 })
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
median(1, 2, 2, 2, 2, 9, 100)
Insert cell
Insert cell
Insert cell
product(1, 2, 3, 4)
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
log(10000, 10)
Insert cell
log10(10000)
Insert cell
ln(e)
Insert cell
Insert cell
Insert cell
factorial(4)
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
math.matrix([1, 2, 3, 4])
Insert cell
root(math.matrix([[1, 2], [3, 4]]), 2).valueOf()
Insert cell
pow(math.matrix([[1, 2], [3, 4]]), 2).valueOf()
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
toDeg(pi)
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
cos(pi)
Insert cell
Insert cell
sin(pi / 2)
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
cosDeg(180)
Insert cell
Insert cell
sinDeg(90)
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
magnitude([2, 4, 9])
Insert cell
Insert cell
Insert cell
Insert cell
dot([0, 4, 0], [1, 2, 3])
Insert cell
Insert cell
Insert cell
Insert cell
cross([0, 5, 0.2732723], [1, 2, 0.2732723])
Insert cell
cross([0, 5, 0.2732723], [1, 2, 0.2732723], true)
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
solve(`a^2 + b^2 = c^2`, {
a: 1,
b: 2,
c: undefined
})
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
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