Sample Jupyter Notebook¶
This is a sample Jupyter notebook to demonstrate the integration with Jekyll.
In [1]:
import sys
print(sys.version_info)
sys.version_info(major=3, minor=8, micro=10, releaselevel='final', serial=0)
Data Analysis Example¶
Let's create a simple data visualization:
In [2]:
# Simple example with list comprehension
numbers = [1, 2, 3, 4, 5]
squares = [x**2 for x in numbers]
print(squares)
[1, 4, 9, 16, 25]
This notebook demonstrates how Jupyter notebooks can be embedded in Jekyll blog posts using the jekyll-jupyter-notebook
plugin.