This is the first post of my blog, where I can test new features.
Math
Math display works:
Code
Code blocks also work, including syntax highlighting:
-- Haskell
fib :: Integer -> Integer
0 = 0
fib 1 = 1
fib = fib (n - 1) + fib (n - 2) fib n
# Python
def fib(n):
= 0, 1
i, j for _ in range(n):
yield i
= j, i + j i, j
Images
Quotes
The number of bins (of size 1) is one larger than the largest value in x. If minlength is specified, there will be at least this number of bins in the output array (though it will be longer if necessary, depending on the contents of x).
- NumPy documentation for bincount