Test Post

How to write a post?

A small post to test the functionalities of the blog. Here is a small formula: $$p(x) = \frac{1}{\sqrt{2\sigma^2}} exp[-\frac{(x - \mu)^2}{2\sigma^2}]$$

In [1]:
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
In [4]:
sns.set()
plt.plot(list(range(10)), list(range(10)), 'ro')
plt.xlabel('X-Axis')
plt.ylabel('Y-Axis')
Out[4]:
Text(0, 0.5, 'Y-Axis')
In [ ]: