Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion practice - folder/Git Practice.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"execution_count": 2,
"id": "415b8726",
"metadata": {},
"outputs": [
Expand All @@ -19,6 +19,7 @@
],
"source": [
"from matplotlib import pyplot as plt\n",
"import numpy as np \n",
"x = np.linspace(0, 2*np.pi, 1001)\n",
"y = np.sin(x)\n",
"f = plt.plot(x,y)"
Expand Down