Jupyter Notebook for Project
layout: page
title: Jupyter_NB
permalink: /Jupyter_NB/
—
This is a Jupyter Notebook created for the project. You can add your description here.
Example Python code
import numpy as np import matplotlib.pyplot as plt
Create some sample data
x = np.linspace(0, 10, 100) y = np.sin(x)
Plot the data
plt.plot(x, y) plt.title(‘Sine Wave Example’) plt.xlabel(‘X Axis’) plt.ylabel(‘Y Axis’) plt.show()
Additional Information
You can add any notes, links, or explanations here.
My Jupyter Notebook Page
This is a page with Python code.
print("Hello, World!")
```python
print(“Hello World”)