Project Test Post

less than 1 minute read

This is a test post!

This is a test of the functionality for adding posts to this website using a markdown file from Jupyter Notebook.

print("I am a code block!")
I am a code block!

Let’s generate some sample data with numpy and plot it using matplotlib.

import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
sns.set_style("whitegrid") #for aesthetics
x = np.random.normal(0, 1, 1000)
y = -5 + 3 * x + np.random.normal(0, 1, 1000) * 5
ax = sns.scatterplot(x, y, marker=".")

scatter plot

Let’s try a regression plot.

ax = sns.regplot(x, y, marker=".")

regression plot

Nice!