mca plots

main
Jeff Moe 2022-05-25 16:45:23 -06:00
parent c093ed7d58
commit 62cbf895a8
1 changed files with 13 additions and 2 deletions

View File

@ -3,7 +3,9 @@
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"metadata": {
"tags": []
},
"outputs": [],
"source": [
"# witzit-plot --- What In The Zap Is That? AI categorization of spectra from LIBS/XRF analyzers.\n",
@ -64,7 +66,16 @@
"metadata": {},
"outputs": [],
"source": [
"df.plot(y=\"2048\", x=\"energy (eV)\")"
"df.plot.line(y=\"2048\", ylabel='Counts', x=\"energy (eV)\", xlabel='energy (eV)', figsize=(28, 15), legend=False)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": [
"df.plot.scatter(y=\"2048\", ylabel='Counts', x=\"energy (eV)\", xlabel='energy (eV)', figsize=(30,15))"
]
}
],