no commit message

parent 537cf57d
This diff is collapsed.
This diff is collapsed.
{
"cells": [],
"metadata": {},
"nbformat": 4,
"nbformat_minor": 4
}
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": 9, "execution_count": 1,
"metadata": {}, "metadata": {},
"outputs": [], "outputs": [],
"source": [ "source": [
...@@ -20,7 +20,7 @@ ...@@ -20,7 +20,7 @@
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": 36, "execution_count": 2,
"metadata": {}, "metadata": {},
"outputs": [ "outputs": [
{ {
...@@ -148,7 +148,7 @@ ...@@ -148,7 +148,7 @@
"4 314.91 315.71 314.44 MLO " "4 314.91 315.71 314.44 MLO "
] ]
}, },
"execution_count": 36, "execution_count": 2,
"metadata": {}, "metadata": {},
"output_type": "execute_result" "output_type": "execute_result"
} }
...@@ -168,7 +168,7 @@ ...@@ -168,7 +168,7 @@
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": 39, "execution_count": 3,
"metadata": {}, "metadata": {},
"outputs": [ "outputs": [
{ {
...@@ -241,7 +241,7 @@ ...@@ -241,7 +241,7 @@
"6 1958 05 317.51" "6 1958 05 317.51"
] ]
}, },
"execution_count": 39, "execution_count": 3,
"metadata": {}, "metadata": {},
"output_type": "execute_result" "output_type": "execute_result"
} }
...@@ -298,6 +298,8 @@ ...@@ -298,6 +298,8 @@
"# Convert 'Yr' and 'Mn' columns to datetime format\n", "# Convert 'Yr' and 'Mn' columns to datetime format\n",
"df['Date'] = pd.to_datetime(df['Year'].astype(str) + df['Month'].astype(str), format='%Y%m')\n", "df['Date'] = pd.to_datetime(df['Year'].astype(str) + df['Month'].astype(str), format='%Y%m')\n",
"\n", "\n",
"\n",
"'''\n",
"# Create a plot of CO2 as a function of time\n", "# Create a plot of CO2 as a function of time\n",
"plt.figure(figsize=(10, 6))\n", "plt.figure(figsize=(10, 6))\n",
"plt.plot(df['Date'], df['CO2'], marker='o', linestyle='-')\n", "plt.plot(df['Date'], df['CO2'], marker='o', linestyle='-')\n",
...@@ -308,7 +310,8 @@ ...@@ -308,7 +310,8 @@
"\n", "\n",
"# Show the plot\n", "# Show the plot\n",
"plt.tight_layout()\n", "plt.tight_layout()\n",
"plt.show()" "plt.show()\n",
"''''''"
] ]
} }
], ],
......
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