Commit 1037f11d authored by Kelly Chang's avatar Kelly Chang

kelly push

parent cbba7336
No preview for this file type
This diff is collapsed.
{
"cells": [
{
"cell_type": "code",
"execution_count": 2,
"id": "8868bc30",
"metadata": {},
"outputs": [],
"source": [
"import numpy as np\n",
"import matplotlib.pyplot as plt\n",
"import seaborn as sns"
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "76317b02",
"metadata": {},
"outputs": [],
"source": [
"data = [2,3,3,4,2,1,5,6,4,3,3,3,6,4,5,4,3,2]\n",
"density = kde.gaussian_kde(data)\n",
"x = np.linspace(-2,10,300)\n",
"y=density(x)\n",
"\n",
"sns.kdeplot(data,bw=0.25)\n",
"plt.show()"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.1"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment