{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "![Callysto.ca Banner](https://github.com/callysto/curriculum-notebooks/blob/master/callysto-notebook-banner-top.jpg?raw=true)\n", "\n", "\"Open" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Climatograph\n", "\n", "A climatograph (or [climograph](https://en.wikipedia.org/wiki/Climograph)) is a visualization of the monthly average [precipitation](https://simple.wikipedia.org/wiki/Precipitation) and [temperature](https://simple.wikipedia.org/wiki/Temperature) at a particular location to show the climate there.\n", "\n", "In this notebook we are using climate data from [The World Bank](https://www.worldbank.org/en/about/legal/terms-of-use-for-datasets) because we are [allowed to share and remix](https://creativecommons.org/licenses/by/4.0/) their content.\n", "\n", "Select the next cell and click the `▶Run` button to import the code libraries that we will use." ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Requirement already satisfied: geopy in /home/mikel/anaconda3/lib/python3.7/site-packages (2.0.0)\n", "Requirement already satisfied: geographiclib<2,>=1.49 in /home/mikel/anaconda3/lib/python3.7/site-packages (from geopy) (1.50)\n", "Libraries successfully imported.\n" ] } ], "source": [ "!pip install geopy\n", "import pandas as pd\n", "import plotly.graph_objs as go\n", "import numpy as np\n", "from geopy.geocoders import Nominatim\n", "geolocator = Nominatim(user_agent='Callysto Climatograph')\n", "print('Libraries successfully imported.')" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Data\n", "\n", "In the following cell, change the city or town name in `location = 'Calgary, AB'` to something like `location = 'Honolulu'`.\n", "\n", "You can also change `year = 2016` to any year between `1991` and `2016`.\n", "\n", "`Run` the cell to get and show the data." ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Precipitation (mm)Temperature (°C)
Month
Jan16.463793-8.776923
Feb13.843966-6.119231
Mar22.156035-2.688462
Apr35.1612073.015385
May62.0896568.023077
Jun96.69051911.803846
Jul64.76724215.165385
Aug58.59396614.300000
Sep44.33534610.061539
Oct21.9017244.261539
Nov19.450000-2.792308
Dec15.482759-7.769231
\n", "
" ], "text/plain": [ " Precipitation (mm) Temperature (°C)\n", "Month \n", "Jan 16.463793 -8.776923\n", "Feb 13.843966 -6.119231\n", "Mar 22.156035 -2.688462\n", "Apr 35.161207 3.015385\n", "May 62.089656 8.023077\n", "Jun 96.690519 11.803846\n", "Jul 64.767242 15.165385\n", "Aug 58.593966 14.300000\n", "Sep 44.335346 10.061539\n", "Oct 21.901724 4.261539\n", "Nov 19.450000 -2.792308\n", "Dec 15.482759 -7.769231" ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "location = 'Calgary, AB'\n", "\n", "coordinates = geolocator.geocode(location)\n", "latitude = coordinates.latitude # if geolocator isn't working, you can manually set the lat and long here\n", "longitude = coordinates.longitude\n", "\n", "precipitation_url = 'https://climateknowledgeportal.worldbank.org/api/data/get-download-data/historical/pr/1901-2016/'+str(latitude)+'$cckp$'+str(longitude)+'/'+str(latitude)+'$cckp$'+str(longitude)\n", "df_precipitation_all = pd.read_csv(precipitation_url)\n", "df_precipitation = df_precipitation_all.drop(columns=[' Longitude', ' Latitude', ' Year']).replace(' Average','',regex=True).replace(' ','',regex=True).rename(columns={'Rainfall - (MM)':'Precipitation (mm)', ' Statistics':'Month'})\n", "dfp = df_precipitation.groupby('Month').aggregate(np.mean)\n", "\n", "temperature_url = 'https://climateknowledgeportal.worldbank.org/api/data/get-download-data/historical/tas/1991-2016/'+str(latitude)+'$cckp$'+str(longitude)+'/'+str(latitude)+'$cckp$'+str(longitude)\n", "df_temperature_all = pd.read_csv(temperature_url)\n", "df_temperature = df_temperature_all.drop(columns=[' Longitude', ' Latitude', ' Year']).replace(' Average','',regex=True).replace(' ','',regex=True).rename(columns={'Temperature - (Celsius)':'Temperature (°C)', ' Statistics':'Month'})\n", "dft = df_temperature.groupby('Month').aggregate(np.mean)\n", "\n", "months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']\n", "climate_data = dfp.join(dft)\n", "climate_data.index = pd.CategoricalIndex(climate_data.index, categories=months, ordered=True)\n", "climate_data = climate_data.sort_index()\n", "climate_data" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Graph\n", "\n", "`Run` the next cell to make a graph." ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "data": { "text/html": [ " \n", " " ] }, "metadata": {}, "output_type": "display_data" }, { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "name": "Precipitation", "type": "bar", "x": [ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" ], "y": [ 16.46379337434111, 13.843965750316102, 22.156034868338953, 35.1612074416259, 62.08965616390637, 96.69051906980332, 64.76724216855813, 58.59396643474194, 44.33534568342674, 21.90172441457875, 19.450000385785895, 15.482758938752346 ] }, { "name": "Average Temperature (°C)", "type": "scatter", "x": [ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" ], "y": [ -8.776923335515622, -6.119230861847242, -2.6884615965760807, 3.0153846800900377, 8.023077047788199, 11.803846285893464, 15.165384916158889, 14.300000264094614, 10.06153869628915, 4.261538517016637, -2.7923077551218123, -7.7692308838551165 ], "yaxis": "y2" } ], "layout": { "showlegend": false, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "sequentialminus": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "Climatograph for Calgary, AB (51.0534234,-114.0625892)" }, "yaxis": { "showgrid": false, "tickfont": { "color": "blue" }, "title": { "font": { "color": "blue" }, "text": "Total Precipitation (mm)" } }, "yaxis2": { "overlaying": "y", "showgrid": false, "side": "right", "tickfont": { "color": "red" }, "title": { "font": { "color": "red" }, "text": "Average Temperature (°C)" } } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "trace1 = go.Bar(x=climate_data.index.values.tolist(),y=climate_data['Precipitation (mm)'],name='Precipitation')\n", "trace2 = go.Scatter(x=climate_data.index.values.tolist(),y=climate_data['Temperature (°C)'],name='Average Temperature (°C)',yaxis='y2')\n", "layout = go.Layout(\n", " title= ('Climatograph for '+location+' ('+str(latitude)+','+str(longitude)+')'),\n", " yaxis=dict(title='Total Precipitation (mm)', titlefont=dict(color='blue'), tickfont=dict(color='blue')),\n", " yaxis2=dict(title='Average Temperature (°C)', titlefont=dict(color='red'), tickfont=dict(color='red'), overlaying='y', side='right'),\n", " showlegend=False)\n", "fig = go.Figure(data=[trace1, trace2], layout=layout)\n", "fig.update_yaxes(showgrid=False)\n", "fig.show()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "On the graph you can mouseover to check values and also zoom in and out.\n", "\n", "You can download your climatograph using the 📷 button." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Climateograph for a Single Year\n", "\n", "Run the following code if you'd prefer a single-year climatograph." ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "name": "Precipitation", "type": "bar", "x": [ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" ], "y": [ 6.800000190734901, 4.0999999046326, 9.6999998092651, 25.300001144409, 72.900001525879, 62.100002288818, 87.700004577637, 41.900001525879, 43.600002288818, 47.799999237061, 6.9000000953674006, 13.199999809265 ] }, { "name": "Average Temperature (°C)", "type": "scatter", "x": [ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" ], "y": [ -7.4000000953674006, -1.8000000715256, 0.20000000298023, 6, 8.900000572204599, 13, 14.699999809265, 14.300000190735, 9.5, 3.7999999523162997, 1.8000000715256, -11.5 ], "yaxis": "y2" } ], "layout": { "showlegend": false, "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "sequentialminus": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "title": { "text": "2016 Climatograph for Calgary, AB (51.0534234,-114.0625892)" }, "yaxis": { "showgrid": false, "tickfont": { "color": "blue" }, "title": { "font": { "color": "blue" }, "text": "Total Precipitation (mm)" } }, "yaxis2": { "overlaying": "y", "showgrid": false, "side": "right", "tickfont": { "color": "red" }, "title": { "font": { "color": "red" }, "text": "Average Temperature (°C)" } } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "location = 'Calgary, AB'\n", "year = 2016\n", "# year can be any between 1901 and 2016\n", "\n", "coordinates = geolocator.geocode(location)\n", "latitude = coordinates.latitude # if geolocator isn't working, you can manually set the lat and long here\n", "longitude = coordinates.longitude\n", "\n", "precipitation_url = 'https://climateknowledgeportal.worldbank.org/api/data/get-download-data/historical/pr/1901-2016/'+str(latitude)+'$cckp$'+str(longitude)+'/'+str(latitude)+'$cckp$'+str(longitude)\n", "df_precipitation_all = pd.read_csv(precipitation_url)\n", "df_precipitation = df_precipitation_all[df_precipitation_all[' Year']==year].drop(columns=[' Longitude', ' Latitude', ' Year']).replace(' Average','',regex=True).replace(' ','',regex=True)\n", "dfp = df_precipitation.rename(columns={'Rainfall - (MM)':'Precipitation (mm)', ' Statistics':'Month'}).set_index('Month')\n", "\n", "temperature_url = 'https://climateknowledgeportal.worldbank.org/api/data/get-download-data/historical/tas/1991-2016/'+str(latitude)+'$cckp$'+str(longitude)+'/'+str(latitude)+'$cckp$'+str(longitude)\n", "df_temperature_all = pd.read_csv(temperature_url)\n", "df_temperature = df_temperature_all[df_temperature_all[' Year']==year].drop(columns=[' Longitude', ' Latitude', ' Year']).replace(' Average','',regex=True).replace(' ','',regex=True)\n", "dft = df_temperature.rename(columns={'Temperature - (Celsius)':'Temperature (°C)', ' Statistics':'Month'}).set_index('Month')\n", "\n", "months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']\n", "climate_data = dfp.join(dft)\n", "climate_data.index = pd.CategoricalIndex(climate_data.index, categories=months, ordered=True)\n", "climate_data = climate_data.sort_index()\n", "\n", "trace1 = go.Bar(x=climate_data.index.values.tolist(),y=climate_data['Precipitation (mm)'],name='Precipitation')\n", "trace2 = go.Scatter(x=climate_data.index.values.tolist(),y=climate_data['Temperature (°C)'],name='Average Temperature (°C)',yaxis='y2')\n", "layout = go.Layout(\n", " title= (str(year)+' Climatograph for '+location+' ('+str(latitude)+','+str(longitude)+')'),\n", " yaxis=dict(title='Total Precipitation (mm)', titlefont=dict(color='blue'), tickfont=dict(color='blue')),\n", " yaxis2=dict(title='Average Temperature (°C)', titlefont=dict(color='red'), tickfont=dict(color='red'), overlaying='y', side='right'),\n", " showlegend=False)\n", "fig = go.Figure(data=[trace1, trace2], layout=layout)\n", "fig.update_yaxes(showgrid=False)\n", "fig.show()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Animated Climatograph\n", "\n", "If you are interested in [animating graphs](https://plot.ly/python/animations/) over time, the following two code cells might be a good place to start." ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1901
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 14.900000572205, 24, 29.800001144409, 32.600002288818004, 64.300003051758, 162.30000305176, 95.900001525879, 19.700000762939, 74.70000457763699, 6.0999999046325994, 18.60000038147, 33.600002288818004 ], "yaxis": "y" } ], "frames": [ { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1901
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 14.900000572205, 24, 29.800001144409, 32.600002288818004, 64.300003051758, 162.30000305176, 95.900001525879, 19.700000762939, 74.70000457763699, 6.0999999046325994, 18.60000038147, 33.600002288818004 ], "yaxis": "y" } ], "name": "1901" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1902
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 17, 16.200000762939, 22, 21.300001144409002, 88.300003051758, 180.90000915527, 107.30000305176, 107.70000457764, 48.700000762939, 14.900000572205, 23.300001144409, 19.10000038147 ], "yaxis": "y" } ], "name": "1902" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1903
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 7.800000190734901, 10, 30.100000381470004, 19.300001144409002, 69.900001525879, 60.5, 118.40000152588001, 95.900001525879, 56.400001525879, 7.4000000953674006, 21.5, 8.3000001907349 ], "yaxis": "y" } ], "name": "1903" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1904
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 10.400000572205, 13, 28.700000762939, 13.800000190735, 35.5, 66.300003051758, 42.700000762939, 57.700000762939, 23.700000762939, 26.600000381470004, 9.8000001907349, 13.199999809265 ], "yaxis": "y" } ], "name": "1904" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1905
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 24, 6.4000000953674006, 20.800001144409002, 20.60000038147, 68.400001525879, 145.69999694824, 40.299999237061, 19.300001144409002, 26, 18.300001144409002, 28.300001144409, 2.6000001430511 ], "yaxis": "y" } ], "name": "1905" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1906
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 6.9000000953674006, 6.700000286102299, 14.699999809265, 11.400000572205, 112.30000305176, 73.20000457763699, 37.200000762939, 76.300003051758, 7.5, 30.700000762939, 15.400000572205, 17.200000762939 ], "yaxis": "y" } ], "name": "1906" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1907
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 16.800001144409002, 6.5, 23.5, 39.400001525879, 44.799999237061, 103.5, 45.299999237061, 97.300003051758, 65.20000457763699, 6.9000000953674006, 9.400000572204599, 10 ], "yaxis": "y" } ], "name": "1907" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1908
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 7.5999999046325994, 12.199999809265, 24.800001144409, 22.300001144409, 111.09999847411999, 155.69999694824, 36.299999237061, 38.5, 20.700000762939, 22.399999618529996, 8.900000572204599, 8.8000001907349 ], "yaxis": "y" } ], "name": "1908" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1909
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 26.5, 14, 16.5, 27.899999618529996, 89.599998474121, 59.400001525879, 89.700004577637, 19.10000038147, 16.300001144409002, 16.800001144409002, 18.89999961853, 15.300000190735 ], "yaxis": "y" } ], "name": "1909" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1910
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 9.6999998092651, 23.399999618529996, 30.399999618529996, 16.200000762939, 28.399999618529996, 57.600002288818, 14.60000038147, 75.5, 44.900001525879, 16.89999961853, 15.5, 9.900000572204599 ], "yaxis": "y" } ], "name": "1910" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1911
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 23.800001144409, 14.60000038147, 23.100000381470004, 29.600000381470004, 92.200004577637, 96.900001525879, 67.599998474121, 104.80000305176, 50.5, 14.60000038147, 24.800001144409, 11.800000190735 ], "yaxis": "y" } ], "name": "1911" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1912
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 17, 4.0999999046326, 8.1999998092651, 43, 41.100002288818004, 96.800003051758, 145.69999694824, 81.400001525879, 51.5, 33.5, 25.899999618529996, 3.7999999523162997 ], "yaxis": "y" } ], "name": "1912" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1913
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 26.700000762939, 15.900000572205, 23.5, 13.60000038147, 40.299999237061, 112.20000457764, 47.799999237061, 92.599998474121, 37, 22.100000381470004, 23.5, 0.69999998807907 ], "yaxis": "y" } ], "name": "1913" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1914
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 29.700000762939, 16.60000038147, 21.800001144409, 29.5, 31.800001144409, 80, 43.100002288818, 43.799999237061, 47.799999237061, 38.799999237061, 31.600000381470004, 17.200000762939 ], "yaxis": "y" } ], "name": "1914" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1915
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 13.400000572205, 9.3000001907349, 7, 17.5, 88.300003051758, 161.80000305176, 121, 35, 56.5, 34.100002288818004, 12.800000190735, 11.300000190735 ], "yaxis": "y" } ], "name": "1915" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1916
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 23.800001144409, 15.699999809265, 22.700000762939, 31.399999618529996, 105.09999847411999, 84.70000457763699, 83.5, 88.300003051758, 59, 29.600000381470004, 17.89999961853, 12.10000038147 ], "yaxis": "y" } ], "name": "1916" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1917
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 13.60000038147, 10.300000190735, 12.300000190735, 34.600002288818004, 97.099998474121, 70.20000457763699, 15.800000190735, 46.900001525879, 33.200000762939, 32.799999237061, 1.8999999761581001, 39.600002288818004 ], "yaxis": "y" } ], "name": "1917" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1918
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 15.60000038147, 20, 19.300001144409002, 9.5, 49.600002288818, 27.700000762939, 38.400001525879, 73.099998474121, 30.600000381470004, 7.300000190734901, 8.6000003814697, 25 ], "yaxis": "y" } ], "name": "1918" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1919
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 12.60000038147, 20.700000762939, 18.300001144409002, 28.700000762939, 46.700000762939, 18.200000762939, 38.100002288818004, 86.800003051758, 42.5, 23.899999618529996, 31, 9.400000572204599 ], "yaxis": "y" } ], "name": "1919" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1920
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 39.5, 21.600000381470004, 24.600000381470004, 58.900001525879, 39.100002288818004, 27.600000381470004, 97.599998474121, 7.300000190734901, 18.89999961853, 23, 4.4000000953674006, 10.400000572205 ], "yaxis": "y" } ], "name": "1920" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1921
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 25.100000381470004, 15.400000572205, 35.900001525879, 59.5, 30.700000762939, 36.100002288818004, 67.599998474121, 36.400001525879, 33.400001525879, 6.300000190734901, 34, 6 ], "yaxis": "y" } ], "name": "1921" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1922
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 10.900000572205, 10.10000038147, 14.900000572205, 66.900001525879, 21.10000038147, 47.700000762939, 40.5, 54.700000762939, 29.200000762939, 13.400000572205, 6.200000286102299, 11.300000190735 ], "yaxis": "y" } ], "name": "1922" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1923
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 12.800000190735, 18.39999961853, 17.60000038147, 36.600002288818004, 126.90000152588001, 186.69999694823997, 85.20000457763699, 59.900001525879, 25.100000381470004, 7.300000190734901, 9.900000572204599, 17.700000762939 ], "yaxis": "y" } ], "name": "1923" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1924
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 19.300001144409002, 19.89999961853, 27.100000381470004, 45.100002288818, 29.600000381470004, 102.40000152588001, 70.800003051758, 93.900001525879, 23.600000381470004, 26.899999618529996, 31, 34.200000762939 ], "yaxis": "y" } ], "name": "1924" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1925
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 14.400000572205, 15.60000038147, 31.800001144409, 32.600002288818004, 29.800001144409, 87.200004577637, 51.5, 66.5, 102.80000305176, 27.700000762939, 17.39999961853, 11 ], "yaxis": "y" } ], "name": "1925" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1926
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 11.800000190735, 18.39999961853, 19.60000038147, 19.10000038147, 28.700000762939, 109.90000152588001, 48.100002288818, 89.5, 125.70000457764, 14.800000190735, 34.100002288818004, 19.10000038147 ], "yaxis": "y" } ], "name": "1926" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1927
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 7.300000190734901, 21.300001144409002, 18.10000038147, 18.200000762939, 106.20000457764, 87.200004577637, 100.09999847411999, 76, 91.900001525879, 29.399999618529996, 34.200000762939, 21.5 ], "yaxis": "y" } ], "name": "1927" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1928
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 14, 15.60000038147, 28.100000381470004, 38, 12.699999809265, 213.30000305176003, 55.400001525879, 59.100002288818, 9.6999998092651, 18.5, 3.9000000953674, 8.400000572204599 ], "yaxis": "y" } ], "name": "1928" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1929
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 17.200000762939, 16.200000762939, 22.399999618529996, 47.799999237061, 59, 93.800003051758, 22.899999618529996, 17, 36, 29, 44.100002288818, 32.600002288818004 ], "yaxis": "y" } ], "name": "1929" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1930
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 11.5, 10.400000572205, 28.899999618529996, 62.400001525879, 51, 71.300003051758, 52, 38.700000762939, 41.700000762939, 22.399999618529996, 22.600000381470004, 5.5999999046325994 ], "yaxis": "y" } ], "name": "1930" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1931
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 4, 4, 27.399999618529996, 26.899999618529996, 33.100002288818004, 115.5, 45, 28.399999618529996, 47.299999237061, 7.0999999046325994, 19.39999961853, 27.200000762939 ], "yaxis": "y" } ], "name": "1931" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1932
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 12.5, 15.699999809265, 22.300001144409, 59.5, 76, 135, 52.400001525879, 81.800003051758, 35.600002288818004, 33.100002288818004, 29.899999618529996, 11.5 ], "yaxis": "y" } ], "name": "1932" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1933
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 12.900000572205, 15.400000572205, 25.300001144409, 54.100002288818, 61.5, 35.400001525879, 28.300001144409, 71.800003051758, 19.200000762939, 41.799999237061, 15.900000572205, 34 ], "yaxis": "y" } ], "name": "1933" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1934
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 10.400000572205, 5.0999999046325994, 34, 22.399999618529996, 32, 91.900001525879, 49.200000762939, 26, 53.299999237061, 16.700000762939, 12.60000038147, 14.10000038147 ], "yaxis": "y" } ], "name": "1934" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1935
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 30.899999618529996, 9.3000001907349, 25.300001144409, 55.600002288818, 76.900001525879, 105, 86.700004577637, 39.400001525879, 15.900000572205, 48.100002288818, 14, 13.10000038147 ], "yaxis": "y" } ], "name": "1935" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1936
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 29.899999618529996, 10.800000190735, 33.200000762939, 26.800001144409, 59.900001525879, 56.200000762939, 13.199999809265, 43.700000762939, 28.200000762939, 33.700000762939, 9.400000572204599, 16.10000038147 ], "yaxis": "y" } ], "name": "1936" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1937
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 29.399999618529996, 8.3000001907349, 30.399999618529996, 21.899999618529996, 55.299999237061, 83.599998474121, 85.900001525879, 59.799999237061, 66.400001525879, 24.5, 36, 16.89999961853 ], "yaxis": "y" } ], "name": "1937" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1938
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 10, 17.200000762939, 18, 29.5, 88.599998474121, 50, 77.599998474121, 69.5, 18, 28.100000381470004, 34.400001525879, 9.900000572204599 ], "yaxis": "y" } ], "name": "1938" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1939
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 12.400000572205, 15.10000038147, 28.200000762939, 19.200000762939, 51, 202.60000610352, 18, 16.89999961853, 54.5, 53.400001525879, 7.5999999046325994, 5.200000286102299 ], "yaxis": "y" } ], "name": "1939" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1940
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 8.6999998092651, 20, 27.700000762939, 83.400001525879, 32.799999237061, 38.799999237061, 86.5, 12, 80.70000457763699, 32, 19.700000762939, 9.5 ], "yaxis": "y" } ], "name": "1940" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1941
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 10.400000572205, 8.1000003814697, 23.100000381470004, 8.900000572204599, 73.599998474121, 95.400001525879, 28.200000762939, 91.200004577637, 53.200000762939, 9.5, 4.4000000953674006, 11.60000038147 ], "yaxis": "y" } ], "name": "1941" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1942
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 10, 14.10000038147, 10.699999809265, 23.5, 104.59999847411999, 121.59999847411999, 117.70000457764, 72.599998474121, 50.100002288818, 23.800001144409, 37.600002288818004, 6.200000286102299 ], "yaxis": "y" } ], "name": "1942" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1943
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 19.800001144409002, 15.800000190735, 31.5, 15.60000038147, 52.100002288818, 79.800003051758, 48.700000762939, 49.400001525879, 19.200000762939, 26.399999618529996, 4.3000001907349, 5 ], "yaxis": "y" } ], "name": "1943" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1944
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 5.5999999046325994, 22.200000762939, 25.800001144409, 17.60000038147, 72.800003051758, 98.5, 109.90000152588001, 51.700000762939, 31.399999618529996, 2.2000000476837003, 12.10000038147, 7.700000286102299 ], "yaxis": "y" } ], "name": "1944" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1945
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 13.60000038147, 17.89999961853, 31, 42, 72.5, 94.200004577637, 46, 72.800003051758, 68.400001525879, 27.800001144409, 36.799999237061, 24.5 ], "yaxis": "y" } ], "name": "1945" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1946
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 8.3000001907349, 8.8000001907349, 24.300001144409, 8.400000572204599, 62.799999237061, 125.70000457764, 41.400001525879, 82.900001525879, 49.600002288818, 30, 44, 24.600000381470004 ], "yaxis": "y" } ], "name": "1946" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1947
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 14.5, 27.399999618529996, 25.200000762939, 28.300001144409, 54.600002288818, 129, 27.200000762939, 89.5, 52.100002288818, 28.100000381470004, 40, 15.199999809265 ], "yaxis": "y" } ], "name": "1947" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1948
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 15.10000038147, 34.799999237061, 26.100000381470004, 55.5, 117.59999847411999, 81.599998474121, 74.300003051758, 40.299999237061, 10.60000038147, 4.5999999046325994, 10.60000038147, 10.400000572205 ], "yaxis": "y" } ], "name": "1948" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1949
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 34.299999237061, 16.300001144409002, 15.400000572205, 19.10000038147, 39.700000762939, 62.299999237061, 65.400001525879, 29, 25.5, 36.5, 6.5999999046325994, 38.700000762939 ], "yaxis": "y" } ], "name": "1949" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1950
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 26.800001144409, 13.10000038147, 29.600000381470004, 33.200000762939, 24.5, 62.799999237061, 83.599998474121, 51.299999237061, 14.10000038147, 40.700000762939, 25.899999618529996, 10.5 ], "yaxis": "y" } ], "name": "1950" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1951
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 25.600000381470004, 26.5, 25.700000762939, 66.5, 84.900001525879, 128.5, 94.099998474121, 130.60000610352, 48.100002288818, 47.799999237061, 9.6999998092651, 32.100002288818004 ], "yaxis": "y" } ], "name": "1951" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1952
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 12, 22.600000381470004, 20.800001144409002, 17.39999961853, 55.400001525879, 162.10000610352, 73.099998474121, 53.5, 27.100000381470004, 11.199999809265, 5.5, 1 ], "yaxis": "y" } ], "name": "1952" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1953
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 40.200000762939, 16.60000038147, 23.600000381470004, 82.20000457763699, 64.5, 149.60000610352, 66, 60.200000762939, 30.200000762939, 4.5999999046325994, 12.699999809265, 19.39999961853 ], "yaxis": "y" } ], "name": "1953" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1954
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 31.300001144409, 22.399999618529996, 36.100002288818004, 62.400001525879, 72.300003051758, 85.599998474121, 30.800001144409, 141.69999694824, 53, 8.6000003814697, 6.4000000953674006, 7.5999999046325994 ], "yaxis": "y" } ], "name": "1954" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1955
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 7.4000000953674006, 19.5, 33.200000762939, 69, 76.099998474121, 32.900001525879, 86.599998474121, 25.899999618529996, 58.100002288818, 16.700000762939, 13, 29.100000381470004 ], "yaxis": "y" } ], "name": "1955" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1956
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 22.800001144409, 13.400000572205, 28.800001144409, 28.800001144409, 27.700000762939, 125.40000152588001, 56.400001525879, 69.5, 23.5, 24.200000762939, 10.60000038147, 28.200000762939 ], "yaxis": "y" } ], "name": "1956" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1957
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 22.399999618529996, 16.800001144409002, 14.900000572205, 40.299999237061, 31.800001144409, 94.200004577637, 38.5, 68.900001525879, 30.800001144409, 53.299999237061, 24, 8.900000572204599 ], "yaxis": "y" } ], "name": "1957" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1958
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 11.699999809265, 18.89999961853, 28, 44.5, 29.100000381470004, 111.5, 104.70000457764, 29.600000381470004, 43.100002288818, 4.4000000953674006, 31.300001144409, 9.900000572204599 ], "yaxis": "y" } ], "name": "1958" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1959
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 16.89999961853, 15.199999809265, 9.6999998092651, 44.799999237061, 69, 107.5, 57.900001525879, 68.20000457763699, 33.400001525879, 21.39999961853, 36.200000762939, 17.300001144409002 ], "yaxis": "y" } ], "name": "1959" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1960
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 13.900000572205, 25.200000762939, 9.6000003814697, 36.900001525879, 61.100002288818, 70.800003051758, 32.400001525879, 50.900001525879, 19.10000038147, 19.800001144409002, 17.700000762939, 19.5 ], "yaxis": "y" } ], "name": "1960" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1961
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 12, 29.399999618529996, 7.5999999046325994, 36.799999237061, 72.70000457763699, 30.100000381470004, 114.59999847411999, 40.900001525879, 38.799999237061, 50.900001525879, 9.8000001907349, 17.200000762939 ], "yaxis": "y" } ], "name": "1961" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1962
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 15.699999809265, 17.200000762939, 17.39999961853, 23.399999618529996, 64, 52.900001525879, 66, 57.5, 37.200000762939, 12.800000190735, 14.400000572205, 15.300000190735 ], "yaxis": "y" } ], "name": "1962" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1963
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 33.600002288818004, 9.8000001907349, 19.200000762939, 43.299999237061, 31, 176.90000915527, 91.400001525879, 28.800001144409, 38.299999237061, 7.800000190734901, 20, 19.60000038147 ], "yaxis": "y" } ], "name": "1963" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1964
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 8.8000001907349, 3.7999999523162997, 13, 37.400001525879, 71.300003051758, 93.300003051758, 46.200000762939, 23.800001144409, 63.799999237061, 14.60000038147, 20.800001144409002, 25.100000381470004 ], "yaxis": "y" } ], "name": "1964" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1965
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 17, 23.700000762939, 21.10000038147, 21.800001144409, 66.099998474121, 162, 82.70000457763699, 75, 89.700004577637, 7.9000000953674006, 31.800001144409, 15.199999809265 ], "yaxis": "y" } ], "name": "1965" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1966
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 17.5, 10.400000572205, 8.6999998092651, 44, 67.900001525879, 69.900001525879, 92.5, 61.400001525879, 15.300000190735, 27.300001144409, 43.400001525879, 7.9000000953674006 ], "yaxis": "y" } ], "name": "1966" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1967
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 21, 15.5, 27.700000762939, 39.299999237061, 67.70000457763699, 71.20000457763699, 21.899999618529996, 28.100000381470004, 3.9000000953674, 25.700000762939, 9.6999998092651, 31.200000762939 ], "yaxis": "y" } ], "name": "1967" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1968
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 18.10000038147, 2.7000000476837003, 22.399999618529996, 35.100002288818004, 49, 97.900001525879, 74.099998474121, 47.600002288818, 76, 29.100000381470004, 13, 31.700000762939 ], "yaxis": "y" } ], "name": "1968" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1969
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 24, 11.300000190735, 11.300000190735, 41.700000762939, 34.299999237061, 143.90000915527, 92.900001525879, 24.700000762939, 56.600002288818, 34.200000762939, 13.800000190735, 6.5999999046325994 ], "yaxis": "y" } ], "name": "1969" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1970
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 18.700000762939, 11.900000572205, 26.399999618529996, 45.5, 33.700000762939, 175.30000305176003, 38.900001525879, 8.5, 25, 30, 29.600000381470004, 11.699999809265 ], "yaxis": "y" } ], "name": "1970" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1971
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 45.700000762939, 15.400000572205, 28.600000381470004, 23.899999618529996, 30.300001144409, 98.800003051758, 63.299999237061, 25.5, 39.600002288818004, 23.700000762939, 8.1000003814697, 30.399999618529996 ], "yaxis": "y" } ], "name": "1971" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1972
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 29.200000762939, 31, 23.700000762939, 31.800001144409, 52.100002288818, 122.5, 78.099998474121, 42, 65.20000457763699, 19.89999961853, 11.60000038147, 31.800001144409 ], "yaxis": "y" } ], "name": "1972" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1973
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 6.700000286102299, 15.300000190735, 17.89999961853, 47.799999237061, 54, 85, 42.200000762939, 93.900001525879, 26.899999618529996, 11, 32.100002288818004, 15 ], "yaxis": "y" } ], "name": "1973" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1974
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 44.200000762939, 6.700000286102299, 31.800001144409, 66.599998474121, 90.900001525879, 38.600002288818004, 38.299999237061, 79.599998474121, 36.900001525879, 20.200000762939, 13, 10.5 ], "yaxis": "y" } ], "name": "1974" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1975
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 10.699999809265, 20.200000762939, 20.39999961853, 36.700000762939, 63, 77.400001525879, 72.900001525879, 45.100002288818, 21.800001144409, 17.200000762939, 10.900000572205, 47.799999237061 ], "yaxis": "y" } ], "name": "1975" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1976
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 5.300000190734901, 14.900000572205, 18.5, 17.89999961853, 71.300003051758, 73.5, 56.600002288818, 111.40000152588001, 41.5, 15.5, 24.200000762939, 15.400000572205 ], "yaxis": "y" } ], "name": "1976" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1977
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 21.200000762939, 3.7999999523162997, 13.800000190735, 7.4000000953674006, 109.70000457764, 35.400001525879, 67.400001525879, 95.300003051758, 62.200000762939, 5.0999999046325994, 15.60000038147, 19 ], "yaxis": "y" } ], "name": "1977" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1978
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 28.600000381470004, 9.8000001907349, 12.800000190735, 77.599998474121, 84.599998474121, 73.400001525879, 72.20000457763699, 97, 80.900001525879, 18.89999961853, 30.100000381470004, 9 ], "yaxis": "y" } ], "name": "1978" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1979
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 11.800000190735, 14.5, 9.5, 45.299999237061, 51.799999237061, 36.5, 43.700000762939, 50.5, 23.300001144409, 21.300001144409002, 13.5, 30.899999618529996 ], "yaxis": "y" } ], "name": "1979" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1980
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 16, 12.10000038147, 23.200000762939, 17, 91.5, 132.40000915527, 56.700000762939, 69.099998474121, 57.700000762939, 21.5, 23.899999618529996, 27.700000762939 ], "yaxis": "y" } ], "name": "1980" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1981
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 6.0999999046325994, 8.400000572204599, 20.200000762939, 10.5, 144.10000610352, 82.900001525879, 136, 28.700000762939, 34.200000762939, 32.799999237061, 7.0999999046325994, 5.700000286102299 ], "yaxis": "y" } ], "name": "1981" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1982
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 24.600000381470004, 12.300000190735, 37.5, 18.5, 71.20000457763699, 94.800003051758, 77.70000457763699, 37.5, 65, 10.699999809265, 14.800000190735, 8.1000003814697 ], "yaxis": "y" } ], "name": "1982" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1983
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 14.900000572205, 6.800000190734901, 21.899999618529996, 57.600002288818, 20.700000762939, 80.70000457763699, 76.5, 29.300001144409, 27.899999618529996, 6.9000000953674006, 15.300000190735, 13.5 ], "yaxis": "y" } ], "name": "1983" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1984
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 22.399999618529996, 4.9000000953674006, 26.5, 18.800001144409002, 64.900001525879, 80.099998474121, 36.299999237061, 26.800001144409, 92.099998474121, 30.100000381470004, 8.6999998092651, 17.700000762939 ], "yaxis": "y" } ], "name": "1984" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1985
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 6, 16.10000038147, 10.800000190735, 39.400001525879, 41.299999237061, 41.5, 38.799999237061, 103.59999847411999, 122.40000152588001, 25.899999618529996, 20.10000038147, 9.1000003814697 ], "yaxis": "y" } ], "name": "1985" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1986
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 1.5, 20.700000762939, 15.800000190735, 27.200000762939, 85.300003051758, 83.70000457763699, 119.20000457764, 44.299999237061, 116.80000305176, 18.60000038147, 21.300001144409002, 1.6000000238418999 ], "yaxis": "y" } ], "name": "1986" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1987
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 6.5, 7.200000286102299, 31.600000381470004, 27, 21.899999618529996, 45, 112, 91.900001525879, 31.600000381470004, 9.1999998092651, 11.199999809265, 7.300000190734901 ], "yaxis": "y" } ], "name": "1987" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1988
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 6.5999999046325994, 6.5999999046325994, 32.700000762939, 9, 25.700000762939, 94.800003051758, 71.400001525879, 101.70000457764, 49.799999237061, 9.8000001907349, 7.5999999046325994, 15.5 ], "yaxis": "y" } ], "name": "1988" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1989
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 27.399999618529996, 16.200000762939, 9.400000572204599, 33.100002288818004, 45.900001525879, 78.5, 54.100002288818, 84, 40.700000762939, 12.800000190735, 29.300001144409, 24.800001144409 ], "yaxis": "y" } ], "name": "1989" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1990
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 12, 10.5, 15.60000038147, 36.299999237061, 106.90000152588001, 64.800003051758, 90.5, 61.400001525879, 8.3000001907349, 22, 29.700000762939, 20.60000038147 ], "yaxis": "y" } ], "name": "1990" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1991
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 9.900000572204599, 18.800001144409002, 24.300001144409, 23.899999618529996, 111.70000457764, 128.60000610352, 40.900001525879, 82.300003051758, 25.600000381470004, 30.700000762939, 15.199999809265, 5.200000286102299 ], "yaxis": "y" } ], "name": "1991" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1992
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 8.400000572204599, 8.6999998092651, 7.800000190734901, 33.400001525879, 68, 137.5, 78, 38.600002288818004, 51.799999237061, 20.60000038147, 42.700000762939, 20 ], "yaxis": "y" } ], "name": "1992" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1993
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 9.400000572204599, 12.699999809265, 25.300001144409, 30.600000381470004, 64.5, 127.70000457764, 102, 86.800003051758, 37, 13.699999809265, 20.300001144409002, 8.1000003814697 ], "yaxis": "y" } ], "name": "1993" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1994
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 24, 14.5, 11.60000038147, 14.5, 77.70000457763699, 92, 44, 83.900001525879, 32.299999237061, 34.400001525879, 17.60000038147, 9.400000572204599 ], "yaxis": "y" } ], "name": "1994" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1995
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 6.4000000953674006, 5.200000286102299, 13.10000038147, 39.299999237061, 69.099998474121, 77.300003051758, 114.40000152588001, 59.100002288818, 26.700000762939, 23.399999618529996, 37.400001525879, 25 ], "yaxis": "y" } ], "name": "1995" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1996
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 30.100000381470004, 4.700000286102299, 34.900001525879, 37.799999237061, 73, 79.599998474121, 45.5, 25.899999618529996, 60.900001525879, 27, 47.600002288818, 26.399999618529996 ], "yaxis": "y" } ], "name": "1996" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1997
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 21, 7.4000000953674006, 24.700000762939, 29.899999618529996, 102.80000305176, 137.69999694824, 36.900001525879, 57.400001525879, 51.100002288818, 24.399999618529996, 3.7999999523162997, 7 ], "yaxis": "y" } ], "name": "1997" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1998
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 19.800001144409002, 4.0999999046326, 22.100000381470004, 48.400001525879, 96, 131.90000915527, 116.09999847411999, 29.5, 33.700000762939, 16.300001144409002, 24.300001144409, 23 ], "yaxis": "y" } ], "name": "1998" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=1999
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 17.800001144409002, 4.0999999046326, 9.8000001907349, 69, 67.5, 94.400001525879, 94, 84.5, 12.10000038147, 11.800000190735, 19.10000038147, 4.9000000953674006 ], "yaxis": "y" } ], "name": "1999" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=2000
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 14.199999809265, 19.60000038147, 28.300001144409, 27.100000381470004, 43.299999237061, 101.30000305176, 56.900001525879, 50.600002288818, 55.799999237061, 5.300000190734901, 8.1000003814697, 12.10000038147 ], "yaxis": "y" } ], "name": "2000" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=2001
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 3.6000001430511004, 10.300000190735, 14.900000572205, 27.600000381470004, 32.600002288818004, 116.70000457764, 61.900001525879, 14.699999809265, 17.10000038147, 22.700000762939, 20.89999961853, 7.300000190734901 ], "yaxis": "y" } ], "name": "2001" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=2002
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 13.199999809265, 12.199999809265, 22.800001144409, 30.5, 50.600002288818, 70.099998474121, 42.200000762939, 56.700000762939, 59, 21.10000038147, 11.300000190735, 11.300000190735 ], "yaxis": "y" } ], "name": "2002" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=2003
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 9.1999998092651, 18.10000038147, 25.899999618529996, 91.200004577637, 43.200000762939, 91.099998474121, 61.600002288818, 42, 45.700000762939, 33.299999237061, 23.899999618529996, 1.8000000715256 ], "yaxis": "y" } ], "name": "2003" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=2004
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 20.39999961853, 2.4000000953674, 16.39999961853, 26.5, 60.799999237061, 88.599998474121, 69.800003051758, 87.5, 48.600002288818, 24.700000762939, 6.200000286102299, 18 ], "yaxis": "y" } ], "name": "2004" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=2005
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 13.199999809265, 12.400000572205, 19.10000038147, 12.199999809265, 28.800001144409, 206.90000915527, 36.700000762939, 89.300003051758, 103.59999847411999, 20.800001144409002, 14.300000190735, 5.700000286102299 ], "yaxis": "y" } ], "name": "2005" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=2006
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 11.5, 17.10000038147, 10, 41.200000762939, 46.100002288818, 114.59999847411999, 60.799999237061, 43.299999237061, 68.400001525879, 20.700000762939, 28.800001144409, 8.1999998092651 ], "yaxis": "y" } ], "name": "2006" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=2007
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 10.300000190735, 21.700000762939, 27.700000762939, 55.900001525879, 87.800003051758, 126, 24.899999618529996, 57.5, 56.100002288818, 18.300001144409002, 12.400000572205, 13.60000038147 ], "yaxis": "y" } ], "name": "2007" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=2008
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 12.800000190735, 12.300000190735, 10.699999809265, 38.799999237061, 97.900001525879, 100, 63.100002288818, 57.5, 37.100002288818004, 13, 20.5, 34.900001525879 ], "yaxis": "y" } ], "name": "2008" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=2009
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 9.400000572204599, 14, 38.799999237061, 19, 26.600000381470004, 60, 99.599998474121, 55.900001525879, 8, 30.399999618529996, 7.9000000953674006, 22.5 ], "yaxis": "y" } ], "name": "2009" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=2010
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 11.400000572205, 5.5, 8.3000001907349, 54.900001525879, 55.100002288818, 93.599998474121, 56.799999237061, 77.099998474121, 70.70000457763699, 10.199999809265, 23, 10.10000038147 ], "yaxis": "y" } ], "name": "2010" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=2011
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 21.899999618529996, 17.300001144409002, 23.899999618529996, 64.400001525879, 92.200004577637, 85.300003051758, 80.300003051758, 31.399999618529996, 17.39999961853, 21.600000381470004, 12, 1.7000000476837 ], "yaxis": "y" } ], "name": "2011" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=2012
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 9.3000001907349, 6.200000286102299, 48.700000762939, 42.200000762939, 27.5, 174.69999694823997, 56.5, 19.700000762939, 29, 24.200000762939, 15.800000190735, 8.1000003814697 ], "yaxis": "y" } ], "name": "2012" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=2013
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 9.6999998092651, 4.800000190734901, 30, 26.399999618529996, 65.5, 155.30000305176, 37.200000762939, 47.200000762939, 42.799999237061, 12.10000038147, 19, 10.800000190735 ], "yaxis": "y" } ], "name": "2013" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=2014
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 13.60000038147, 7.300000190734901, 36, 41.400001525879, 83.599998474121, 103.70000457764, 30.700000762939, 50.799999237061, 66.599998474121, 15.199999809265, 35.400001525879, 3.7999999523162997 ], "yaxis": "y" } ], "name": "2014" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=2015
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 13.400000572205, 12.300000190735, 16.89999961853, 18.10000038147, 19.39999961853, 55.900001525879, 43.299999237061, 73.20000457763699, 62.400001525879, 21, 29.700000762939, 9.400000572204599 ], "yaxis": "y" } ], "name": "2015" }, { "data": [ { "alignmentgroup": "True", "hovertemplate": " Year=2016
Statistics=%{x}
Rainfall - (MM)=%{y}", "legendgroup": "", "marker": { "color": "#636efa" }, "name": "", "offsetgroup": "", "orientation": "v", "showlegend": false, "textposition": "auto", "type": "bar", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ 6.800000190734901, 4.0999999046326, 9.6999998092651, 25.300001144409, 72.900001525879, 62.100002288818, 87.700004577637, 41.900001525879, 43.600002288818, 47.799999237061, 6.9000000953674006, 13.199999809265 ], "yaxis": "y" } ], "name": "2016" } ], "layout": { "barmode": "relative", "legend": { "tracegroupgap": 0 }, "margin": { "t": 60 }, "sliders": [ { "active": 0, "currentvalue": { "prefix": " Year=" }, "len": 0.9, "pad": { "b": 10, "t": 60 }, "steps": [ { "args": [ [ "1901" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1901", "method": "animate" }, { "args": [ [ "1902" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1902", "method": "animate" }, { "args": [ [ "1903" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1903", "method": "animate" }, { "args": [ [ "1904" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1904", "method": "animate" }, { "args": [ [ "1905" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1905", "method": "animate" }, { "args": [ [ "1906" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1906", "method": "animate" }, { "args": [ [ "1907" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1907", "method": "animate" }, { "args": [ [ "1908" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1908", "method": "animate" }, { "args": [ [ "1909" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1909", "method": "animate" }, { "args": [ [ "1910" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1910", "method": "animate" }, { "args": [ [ "1911" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1911", "method": "animate" }, { "args": [ [ "1912" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1912", "method": "animate" }, { "args": [ [ "1913" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1913", "method": "animate" }, { "args": [ [ "1914" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1914", "method": "animate" }, { "args": [ [ "1915" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1915", "method": "animate" }, { "args": [ [ "1916" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1916", "method": "animate" }, { "args": [ [ "1917" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1917", "method": "animate" }, { "args": [ [ "1918" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1918", "method": "animate" }, { "args": [ [ "1919" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1919", "method": "animate" }, { "args": [ [ "1920" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1920", "method": "animate" }, { "args": [ [ "1921" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1921", "method": "animate" }, { "args": [ [ "1922" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1922", "method": "animate" }, { "args": [ [ "1923" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1923", "method": "animate" }, { "args": [ [ "1924" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1924", "method": "animate" }, { "args": [ [ "1925" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1925", "method": "animate" }, { "args": [ [ "1926" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1926", "method": "animate" }, { "args": [ [ "1927" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1927", "method": "animate" }, { "args": [ [ "1928" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1928", "method": "animate" }, { "args": [ [ "1929" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1929", "method": "animate" }, { "args": [ [ "1930" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1930", "method": "animate" }, { "args": [ [ "1931" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1931", "method": "animate" }, { "args": [ [ "1932" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1932", "method": "animate" }, { "args": [ [ "1933" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1933", "method": "animate" }, { "args": [ [ "1934" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1934", "method": "animate" }, { "args": [ [ "1935" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1935", "method": "animate" }, { "args": [ [ "1936" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1936", "method": "animate" }, { "args": [ [ "1937" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1937", "method": "animate" }, { "args": [ [ "1938" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1938", "method": "animate" }, { "args": [ [ "1939" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1939", "method": "animate" }, { "args": [ [ "1940" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1940", "method": "animate" }, { "args": [ [ "1941" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1941", "method": "animate" }, { "args": [ [ "1942" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1942", "method": "animate" }, { "args": [ [ "1943" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1943", "method": "animate" }, { "args": [ [ "1944" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1944", "method": "animate" }, { "args": [ [ "1945" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1945", "method": "animate" }, { "args": [ [ "1946" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1946", "method": "animate" }, { "args": [ [ "1947" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1947", "method": "animate" }, { "args": [ [ "1948" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1948", "method": "animate" }, { "args": [ [ "1949" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1949", "method": "animate" }, { "args": [ [ "1950" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1950", "method": "animate" }, { "args": [ [ "1951" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1951", "method": "animate" }, { "args": [ [ "1952" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1952", "method": "animate" }, { "args": [ [ "1953" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1953", "method": "animate" }, { "args": [ [ "1954" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1954", "method": "animate" }, { "args": [ [ "1955" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1955", "method": "animate" }, { "args": [ [ "1956" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1956", "method": "animate" }, { "args": [ [ "1957" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1957", "method": "animate" }, { "args": [ [ "1958" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1958", "method": "animate" }, { "args": [ [ "1959" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1959", "method": "animate" }, { "args": [ [ "1960" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1960", "method": "animate" }, { "args": [ [ "1961" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1961", "method": "animate" }, { "args": [ [ "1962" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1962", "method": "animate" }, { "args": [ [ "1963" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1963", "method": "animate" }, { "args": [ [ "1964" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1964", "method": "animate" }, { "args": [ [ "1965" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1965", "method": "animate" }, { "args": [ [ "1966" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1966", "method": "animate" }, { "args": [ [ "1967" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1967", "method": "animate" }, { "args": [ [ "1968" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1968", "method": "animate" }, { "args": [ [ "1969" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1969", "method": "animate" }, { "args": [ [ "1970" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1970", "method": "animate" }, { "args": [ [ "1971" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1971", "method": "animate" }, { "args": [ [ "1972" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1972", "method": "animate" }, { "args": [ [ "1973" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1973", "method": "animate" }, { "args": [ [ "1974" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1974", "method": "animate" }, { "args": [ [ "1975" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1975", "method": "animate" }, { "args": [ [ "1976" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1976", "method": "animate" }, { "args": [ [ "1977" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1977", "method": "animate" }, { "args": [ [ "1978" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1978", "method": "animate" }, { "args": [ [ "1979" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1979", "method": "animate" }, { "args": [ [ "1980" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1980", "method": "animate" }, { "args": [ [ "1981" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1981", "method": "animate" }, { "args": [ [ "1982" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1982", "method": "animate" }, { "args": [ [ "1983" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1983", "method": "animate" }, { "args": [ [ "1984" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1984", "method": "animate" }, { "args": [ [ "1985" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1985", "method": "animate" }, { "args": [ [ "1986" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1986", "method": "animate" }, { "args": [ [ "1987" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1987", "method": "animate" }, { "args": [ [ "1988" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1988", "method": "animate" }, { "args": [ [ "1989" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1989", "method": "animate" }, { "args": [ [ "1990" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1990", "method": "animate" }, { "args": [ [ "1991" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1991", "method": "animate" }, { "args": [ [ "1992" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1992", "method": "animate" }, { "args": [ [ "1993" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1993", "method": "animate" }, { "args": [ [ "1994" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1994", "method": "animate" }, { "args": [ [ "1995" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1995", "method": "animate" }, { "args": [ [ "1996" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1996", "method": "animate" }, { "args": [ [ "1997" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1997", "method": "animate" }, { "args": [ [ "1998" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1998", "method": "animate" }, { "args": [ [ "1999" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1999", "method": "animate" }, { "args": [ [ "2000" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2000", "method": "animate" }, { "args": [ [ "2001" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2001", "method": "animate" }, { "args": [ [ "2002" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2002", "method": "animate" }, { "args": [ [ "2003" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2003", "method": "animate" }, { "args": [ [ "2004" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2004", "method": "animate" }, { "args": [ [ "2005" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2005", "method": "animate" }, { "args": [ [ "2006" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2006", "method": "animate" }, { "args": [ [ "2007" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2007", "method": "animate" }, { "args": [ [ "2008" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2008", "method": "animate" }, { "args": [ [ "2009" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2009", "method": "animate" }, { "args": [ [ "2010" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2010", "method": "animate" }, { "args": [ [ "2011" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2011", "method": "animate" }, { "args": [ [ "2012" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2012", "method": "animate" }, { "args": [ [ "2013" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2013", "method": "animate" }, { "args": [ [ "2014" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2014", "method": "animate" }, { "args": [ [ "2015" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2015", "method": "animate" }, { "args": [ [ "2016" ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2016", "method": "animate" } ], "x": 0.1, "xanchor": "left", "y": 0, "yanchor": "top" } ], "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "sequentialminus": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "updatemenus": [ { "buttons": [ { "args": [ null, { "frame": { "duration": 500, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 500, "easing": "linear" } } ], "label": "▶", "method": "animate" }, { "args": [ [ null ], { "frame": { "duration": 0, "redraw": true }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "◼", "method": "animate" } ], "direction": "left", "pad": { "r": 10, "t": 70 }, "showactive": false, "type": "buttons", "x": 0.1, "xanchor": "right", "y": 0, "yanchor": "top" } ], "xaxis": { "anchor": "y", "domain": [ 0, 1 ], "title": { "text": " Statistics" } }, "yaxis": { "anchor": "x", "domain": [ 0, 1 ], "range": [ 0, 213.30000305176003 ], "title": { "text": "Rainfall - (MM)" } } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "import plotly.express as px\n", "max_rainfall = df_precipitation_all['Rainfall - (MM)'].max()\n", "fig = px.bar(df_precipitation_all.replace(' Average','',regex=True), x=' Statistics', y='Rainfall - (MM)', animation_frame=' Year', range_y=[0,max_rainfall])\n", "fig.show()" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "application/vnd.plotly.v1+json": { "config": { "plotlyServerURL": "https://plot.ly" }, "data": [ { "hovertemplate": " Year=1991
Statistics=%{x}
Temperature - (Celsius)=%{y}", "legendgroup": "", "line": { "color": "#636efa", "dash": "solid" }, "mode": "lines", "name": "", "orientation": "v", "showlegend": false, "type": "scatter", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ -10.400000572205, 1, -4.3000001907349, 4.3000001907349, 8.1999998092651, 11.199999809265, 14.900000572205, 16.5, 10.400000572205, 1.5, -3.4000000953674, -3.9000000953674 ], "yaxis": "y" } ], "frames": [ { "data": [ { "hovertemplate": " Year=1991
Statistics=%{x}
Temperature - (Celsius)=%{y}", "legendgroup": "", "line": { "color": "#636efa", "dash": "solid" }, "mode": "lines", "name": "", "orientation": "v", "showlegend": false, "type": "scatter", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ -10.400000572205, 1, -4.3000001907349, 4.3000001907349, 8.1999998092651, 11.199999809265, 14.900000572205, 16.5, 10.400000572205, 1.5, -3.4000000953674, -3.9000000953674 ], "yaxis": "y" } ], "name": "1991" }, { "data": [ { "hovertemplate": " Year=1992
Statistics=%{x}
Temperature - (Celsius)=%{y}", "legendgroup": "", "line": { "color": "#636efa", "dash": "solid" }, "mode": "lines", "name": "", "orientation": "v", "showlegend": false, "type": "scatter", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ -3, -2.7999999523162997, 2.5, 5.0999999046325994, 7.9000000953674006, 13.400000572205, 13.10000038147, 12.800000190735, 8.1000003814697, 4.800000190734901, -2, -12.300000190735 ], "yaxis": "y" } ], "name": "1992" }, { "data": [ { "hovertemplate": " Year=1993
Statistics=%{x}
Temperature - (Celsius)=%{y}", "legendgroup": "", "line": { "color": "#636efa", "dash": "solid" }, "mode": "lines", "name": "", "orientation": "v", "showlegend": false, "type": "scatter", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ -12.900000572205, -8.6999998092651, -1.3999999761581001, 3.9000000953674, 10.300000190735, 11.10000038147, 12.300000190735, 12.5, 9.1000003814697, 5.0999999046325994, -4.3000001907349, -3.1000001430511004 ], "yaxis": "y" } ], "name": "1993" }, { "data": [ { "hovertemplate": " Year=1994
Statistics=%{x}
Temperature - (Celsius)=%{y}", "legendgroup": "", "line": { "color": "#636efa", "dash": "solid" }, "mode": "lines", "name": "", "orientation": "v", "showlegend": false, "type": "scatter", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ -9.3000001907349, -13.60000038147, 1.1000000238418999, 4.700000286102299, 9.1999998092651, 11.699999809265, 16.200000762939, 14.60000038147, 11.900000572205, 4.3000001907349, -4, -6.800000190734901 ], "yaxis": "y" } ], "name": "1994" }, { "data": [ { "hovertemplate": " Year=1995
Statistics=%{x}
Temperature - (Celsius)=%{y}", "legendgroup": "", "line": { "color": "#636efa", "dash": "solid" }, "mode": "lines", "name": "", "orientation": "v", "showlegend": false, "type": "scatter", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ -9.3000001907349, -5.4000000953674006, -3.2000000476837003, 2, 8.1000003814697, 12.400000572205, 14.300000190735, 11.900000572205, 10.199999809265, 3.6000001430511004, -4.4000000953674006, -9.400000572204599 ], "yaxis": "y" } ], "name": "1995" }, { "data": [ { "hovertemplate": " Year=1996
Statistics=%{x}
Temperature - (Celsius)=%{y}", "legendgroup": "", "line": { "color": "#636efa", "dash": "solid" }, "mode": "lines", "name": "", "orientation": "v", "showlegend": false, "type": "scatter", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ -16.300001144409002, -7.5, -6.300000190734901, 3.5, 5.5, 11.5, 15.10000038147, 15.10000038147, 8.1999998092651, 3.6000001430511004, -8.900000572204599, -14.10000038147 ], "yaxis": "y" } ], "name": "1996" }, { "data": [ { "hovertemplate": " Year=1997
Statistics=%{x}
Temperature - (Celsius)=%{y}", "legendgroup": "", "line": { "color": "#636efa", "dash": "solid" }, "mode": "lines", "name": "", "orientation": "v", "showlegend": false, "type": "scatter", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ -13.10000038147, -4, -4.800000190734901, 0.90000003576279, 7.9000000953674006, 12.10000038147, 14.800000190735, 14.60000038147, 11.60000038147, 4.200000286102299, -1.3999999761581001, -3.2000000476837003 ], "yaxis": "y" } ], "name": "1997" }, { "data": [ { "hovertemplate": " Year=1998
Statistics=%{x}
Temperature - (Celsius)=%{y}", "legendgroup": "", "line": { "color": "#636efa", "dash": "solid" }, "mode": "lines", "name": "", "orientation": "v", "showlegend": false, "type": "scatter", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ -12.900000572205, -2.2999999523162997, -3.2000000476837003, 5, 10.900000572205, 11.300000190735, 16.800001144409002, 16.39999961853, 12.199999809265, 5.800000190734901, -2, -8.3000001907349 ], "yaxis": "y" } ], "name": "1998" }, { "data": [ { "hovertemplate": " Year=1999
Statistics=%{x}
Temperature - (Celsius)=%{y}", "legendgroup": "", "line": { "color": "#636efa", "dash": "solid" }, "mode": "lines", "name": "", "orientation": "v", "showlegend": false, "type": "scatter", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ -8.5, -3.4000000953674, -2.2999999523162997, 3.5, 6.9000000953674006, 10.5, 12.699999809265, 14.900000572205, 9.1999998092651, 4.9000000953674006, 0.40000000596046, -1.6000000238418999 ], "yaxis": "y" } ], "name": "1999" }, { "data": [ { "hovertemplate": " Year=2000
Statistics=%{x}
Temperature - (Celsius)=%{y}", "legendgroup": "", "line": { "color": "#636efa", "dash": "solid" }, "mode": "lines", "name": "", "orientation": "v", "showlegend": false, "type": "scatter", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ -10.400000572205, -7, -1.3999999761581001, 2.7999999523162997, 7.0999999046325994, 10.800000190735, 15, 13.5, 9, 4.4000000953674006, -4.5, -11 ], "yaxis": "y" } ], "name": "2000" }, { "data": [ { "hovertemplate": " Year=2001
Statistics=%{x}
Temperature - (Celsius)=%{y}", "legendgroup": "", "line": { "color": "#636efa", "dash": "solid" }, "mode": "lines", "name": "", "orientation": "v", "showlegend": false, "type": "scatter", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ -3.5, -10.800000190735, -1.3999999761581001, 2.2000000476837003, 9.1999998092651, 11, 15.199999809265, 15.900000572205, 11.300000190735, 3, -0.40000000596046, -8.6999998092651 ], "yaxis": "y" } ], "name": "2001" }, { "data": [ { "hovertemplate": " Year=2002
Statistics=%{x}
Temperature - (Celsius)=%{y}", "legendgroup": "", "line": { "color": "#636efa", "dash": "solid" }, "mode": "lines", "name": "", "orientation": "v", "showlegend": false, "type": "scatter", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ -8, -4.700000286102299, -11.400000572205, -0.69999998807907, 5.700000286102299, 12.60000038147, 15.900000572205, 12.60000038147, 8.8000001907349, 0.90000003576279, 0.80000001192093, -4.4000000953674006 ], "yaxis": "y" } ], "name": "2002" }, { "data": [ { "hovertemplate": " Year=2003
Statistics=%{x}
Temperature - (Celsius)=%{y}", "legendgroup": "", "line": { "color": "#636efa", "dash": "solid" }, "mode": "lines", "name": "", "orientation": "v", "showlegend": false, "type": "scatter", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ -7.5999999046325994, -7.5, -5.5999999046325994, 2.6000001430511, 7, 12, 15.900000572205, 16, 9.8000001907349, 6.0999999046325994, -6.800000190734901, -6.200000286102299 ], "yaxis": "y" } ], "name": "2003" }, { "data": [ { "hovertemplate": " Year=2004
Statistics=%{x}
Temperature - (Celsius)=%{y}", "legendgroup": "", "line": { "color": "#636efa", "dash": "solid" }, "mode": "lines", "name": "", "orientation": "v", "showlegend": false, "type": "scatter", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ -11.60000038147, -4.700000286102299, 0, 4.4000000953674006, 6.5, 11.5, 15.300000190735, 13.900000572205, 8.400000572204599, 3, 0, -5.9000000953674006 ], "yaxis": "y" } ], "name": "2004" }, { "data": [ { "hovertemplate": " Year=2005
Statistics=%{x}
Temperature - (Celsius)=%{y}", "legendgroup": "", "line": { "color": "#636efa", "dash": "solid" }, "mode": "lines", "name": "", "orientation": "v", "showlegend": false, "type": "scatter", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ -10.199999809265, -4.5, -1, 4.200000286102299, 8.8000001907349, 10.800000190735, 14.60000038147, 12.60000038147, 8.1999998092651, 4.9000000953674006, -0.60000002384186, -5.9000000953674006 ], "yaxis": "y" } ], "name": "2005" }, { "data": [ { "hovertemplate": " Year=2006
Statistics=%{x}
Temperature - (Celsius)=%{y}", "legendgroup": "", "line": { "color": "#636efa", "dash": "solid" }, "mode": "lines", "name": "", "orientation": "v", "showlegend": false, "type": "scatter", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ -2.7000000476837003, -6.300000190734901, -4.4000000953674006, 5.200000286102299, 9.3000001907349, 13.10000038147, 16.800001144409002, 14, 10.800000190735, 3, -6.5, -4.3000001907349 ], "yaxis": "y" } ], "name": "2006" }, { "data": [ { "hovertemplate": " Year=2007
Statistics=%{x}
Temperature - (Celsius)=%{y}", "legendgroup": "", "line": { "color": "#636efa", "dash": "solid" }, "mode": "lines", "name": "", "orientation": "v", "showlegend": false, "type": "scatter", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ -6.700000286102299, -8.6000003814697, -0.30000001192093, 2.1000001430511, 8.5, 12.199999809265, 17.89999961853, 12.800000190735, 8.900000572204599, 5.300000190734901, -2.7000000476837003, -9.1999998092651 ], "yaxis": "y" } ], "name": "2007" }, { "data": [ { "hovertemplate": " Year=2008
Statistics=%{x}
Temperature - (Celsius)=%{y}", "legendgroup": "", "line": { "color": "#636efa", "dash": "solid" }, "mode": "lines", "name": "", "orientation": "v", "showlegend": false, "type": "scatter", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ -10.10000038147, -6.5999999046325994, -2.2999999523162997, 0.10000000149011999, 8.8000001907349, 11.5, 14.699999809265, 14.699999809265, 9.6000003814697, 5.0999999046325994, 1, -12.5 ], "yaxis": "y" } ], "name": "2008" }, { "data": [ { "hovertemplate": " Year=2009
Statistics=%{x}
Temperature - (Celsius)=%{y}", "legendgroup": "", "line": { "color": "#636efa", "dash": "solid" }, "mode": "lines", "name": "", "orientation": "v", "showlegend": false, "type": "scatter", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ -8.6999998092651, -7.9000000953674006, -6.0999999046325994, 2, 7.5, 11.300000190735, 15.10000038147, 14.199999809265, 13.10000038147, 1.1000000238418999, 0.5, -13.300000190735 ], "yaxis": "y" } ], "name": "2009" }, { "data": [ { "hovertemplate": " Year=2010
Statistics=%{x}
Temperature - (Celsius)=%{y}", "legendgroup": "", "line": { "color": "#636efa", "dash": "solid" }, "mode": "lines", "name": "", "orientation": "v", "showlegend": false, "type": "scatter", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ -7.200000286102299, -4.9000000953674006, 1, 3.6000001430511004, 6.0999999046325994, 11.5, 14.5, 13.400000572205, 8.400000572204599, 6.5, -5.200000286102299, -9.6999998092651 ], "yaxis": "y" } ], "name": "2010" }, { "data": [ { "hovertemplate": " Year=2011
Statistics=%{x}
Temperature - (Celsius)=%{y}", "legendgroup": "", "line": { "color": "#636efa", "dash": "solid" }, "mode": "lines", "name": "", "orientation": "v", "showlegend": false, "type": "scatter", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ -9.900000572204599, -10.5, -6.200000286102299, 0.60000002384186, 8, 11.10000038147, 14.10000038147, 14.400000572205, 12, 5.200000286102299, -3.5, -4.9000000953674006 ], "yaxis": "y" } ], "name": "2011" }, { "data": [ { "hovertemplate": " Year=2012
Statistics=%{x}
Temperature - (Celsius)=%{y}", "legendgroup": "", "line": { "color": "#636efa", "dash": "solid" }, "mode": "lines", "name": "", "orientation": "v", "showlegend": false, "type": "scatter", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ -6.800000190734901, -5.800000190734901, -1.3000000715256002, 3.7000000476837003, 7.200000286102299, 11.699999809265, 16.5, 15.10000038147, 11.400000572205, 2.7999999523162997, -3.2000000476837003, -8.6999998092651 ], "yaxis": "y" } ], "name": "2012" }, { "data": [ { "hovertemplate": " Year=2013
Statistics=%{x}
Temperature - (Celsius)=%{y}", "legendgroup": "", "line": { "color": "#636efa", "dash": "solid" }, "mode": "lines", "name": "", "orientation": "v", "showlegend": false, "type": "scatter", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ -8.3000001907349, -3.7000000476837003, -3.6000001430511004, 0.90000003576279, 9.1000003814697, 11.900000572205, 15.60000038147, 15.400000572205, 12.10000038147, 3.7999999523162997, -4.4000000953674006, -10.400000572205 ], "yaxis": "y" } ], "name": "2013" }, { "data": [ { "hovertemplate": " Year=2014
Statistics=%{x}
Temperature - (Celsius)=%{y}", "legendgroup": "", "line": { "color": "#636efa", "dash": "solid" }, "mode": "lines", "name": "", "orientation": "v", "showlegend": false, "type": "scatter", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ -6.200000286102299, -12.60000038147, -5.4000000953674006, 2.5, 7.700000286102299, 11.199999809265, 16.800001144409002, 15.10000038147, 10.10000038147, 7.0999999046325994, -5.5, -6 ], "yaxis": "y" } ], "name": "2014" }, { "data": [ { "hovertemplate": " Year=2015
Statistics=%{x}
Temperature - (Celsius)=%{y}", "legendgroup": "", "line": { "color": "#636efa", "dash": "solid" }, "mode": "lines", "name": "", "orientation": "v", "showlegend": false, "type": "scatter", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ -7.200000286102299, -4.5, 1.2000000476837, 3.2999999523162997, 8.3000001907349, 14.5, 15.5, 14.60000038147, 9.3000001907349, 7, -3.4000000953674, -6.700000286102299 ], "yaxis": "y" } ], "name": "2015" }, { "data": [ { "hovertemplate": " Year=2016
Statistics=%{x}
Temperature - (Celsius)=%{y}", "legendgroup": "", "line": { "color": "#636efa", "dash": "solid" }, "mode": "lines", "name": "", "orientation": "v", "showlegend": false, "type": "scatter", "x": [ " Jan", " Feb", " Mar", " Apr", " May", " Jun", " Jul", " Aug", " Sep", " Oct", " Nov", " Dec" ], "xaxis": "x", "y": [ -7.4000000953674006, -1.8000000715256, 0.20000000298023, 6, 8.900000572204599, 13, 14.699999809265, 14.300000190735, 9.5, 3.7999999523162997, 1.8000000715256, -11.5 ], "yaxis": "y" } ], "name": "2016" } ], "layout": { "legend": { "tracegroupgap": 0 }, "margin": { "t": 60 }, "sliders": [ { "active": 0, "currentvalue": { "prefix": " Year=" }, "len": 0.9, "pad": { "b": 10, "t": 60 }, "steps": [ { "args": [ [ "1991" ], { "frame": { "duration": 0, "redraw": false }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1991", "method": "animate" }, { "args": [ [ "1992" ], { "frame": { "duration": 0, "redraw": false }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1992", "method": "animate" }, { "args": [ [ "1993" ], { "frame": { "duration": 0, "redraw": false }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1993", "method": "animate" }, { "args": [ [ "1994" ], { "frame": { "duration": 0, "redraw": false }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1994", "method": "animate" }, { "args": [ [ "1995" ], { "frame": { "duration": 0, "redraw": false }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1995", "method": "animate" }, { "args": [ [ "1996" ], { "frame": { "duration": 0, "redraw": false }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1996", "method": "animate" }, { "args": [ [ "1997" ], { "frame": { "duration": 0, "redraw": false }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1997", "method": "animate" }, { "args": [ [ "1998" ], { "frame": { "duration": 0, "redraw": false }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1998", "method": "animate" }, { "args": [ [ "1999" ], { "frame": { "duration": 0, "redraw": false }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "1999", "method": "animate" }, { "args": [ [ "2000" ], { "frame": { "duration": 0, "redraw": false }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2000", "method": "animate" }, { "args": [ [ "2001" ], { "frame": { "duration": 0, "redraw": false }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2001", "method": "animate" }, { "args": [ [ "2002" ], { "frame": { "duration": 0, "redraw": false }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2002", "method": "animate" }, { "args": [ [ "2003" ], { "frame": { "duration": 0, "redraw": false }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2003", "method": "animate" }, { "args": [ [ "2004" ], { "frame": { "duration": 0, "redraw": false }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2004", "method": "animate" }, { "args": [ [ "2005" ], { "frame": { "duration": 0, "redraw": false }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2005", "method": "animate" }, { "args": [ [ "2006" ], { "frame": { "duration": 0, "redraw": false }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2006", "method": "animate" }, { "args": [ [ "2007" ], { "frame": { "duration": 0, "redraw": false }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2007", "method": "animate" }, { "args": [ [ "2008" ], { "frame": { "duration": 0, "redraw": false }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2008", "method": "animate" }, { "args": [ [ "2009" ], { "frame": { "duration": 0, "redraw": false }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2009", "method": "animate" }, { "args": [ [ "2010" ], { "frame": { "duration": 0, "redraw": false }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2010", "method": "animate" }, { "args": [ [ "2011" ], { "frame": { "duration": 0, "redraw": false }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2011", "method": "animate" }, { "args": [ [ "2012" ], { "frame": { "duration": 0, "redraw": false }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2012", "method": "animate" }, { "args": [ [ "2013" ], { "frame": { "duration": 0, "redraw": false }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2013", "method": "animate" }, { "args": [ [ "2014" ], { "frame": { "duration": 0, "redraw": false }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2014", "method": "animate" }, { "args": [ [ "2015" ], { "frame": { "duration": 0, "redraw": false }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2015", "method": "animate" }, { "args": [ [ "2016" ], { "frame": { "duration": 0, "redraw": false }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "2016", "method": "animate" } ], "x": 0.1, "xanchor": "left", "y": 0, "yanchor": "top" } ], "template": { "data": { "bar": [ { "error_x": { "color": "#2a3f5f" }, "error_y": { "color": "#2a3f5f" }, "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "bar" } ], "barpolar": [ { "marker": { "line": { "color": "#E5ECF6", "width": 0.5 } }, "type": "barpolar" } ], "carpet": [ { "aaxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "baxis": { "endlinecolor": "#2a3f5f", "gridcolor": "white", "linecolor": "white", "minorgridcolor": "white", "startlinecolor": "#2a3f5f" }, "type": "carpet" } ], "choropleth": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "choropleth" } ], "contour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "contour" } ], "contourcarpet": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "contourcarpet" } ], "heatmap": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmap" } ], "heatmapgl": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "heatmapgl" } ], "histogram": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "histogram" } ], "histogram2d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2d" } ], "histogram2dcontour": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "histogram2dcontour" } ], "mesh3d": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "type": "mesh3d" } ], "parcoords": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "parcoords" } ], "pie": [ { "automargin": true, "type": "pie" } ], "scatter": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter" } ], "scatter3d": [ { "line": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatter3d" } ], "scattercarpet": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattercarpet" } ], "scattergeo": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergeo" } ], "scattergl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattergl" } ], "scattermapbox": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scattermapbox" } ], "scatterpolar": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolar" } ], "scatterpolargl": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterpolargl" } ], "scatterternary": [ { "marker": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "type": "scatterternary" } ], "surface": [ { "colorbar": { "outlinewidth": 0, "ticks": "" }, "colorscale": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "type": "surface" } ], "table": [ { "cells": { "fill": { "color": "#EBF0F8" }, "line": { "color": "white" } }, "header": { "fill": { "color": "#C8D4E3" }, "line": { "color": "white" } }, "type": "table" } ] }, "layout": { "annotationdefaults": { "arrowcolor": "#2a3f5f", "arrowhead": 0, "arrowwidth": 1 }, "coloraxis": { "colorbar": { "outlinewidth": 0, "ticks": "" } }, "colorscale": { "diverging": [ [ 0, "#8e0152" ], [ 0.1, "#c51b7d" ], [ 0.2, "#de77ae" ], [ 0.3, "#f1b6da" ], [ 0.4, "#fde0ef" ], [ 0.5, "#f7f7f7" ], [ 0.6, "#e6f5d0" ], [ 0.7, "#b8e186" ], [ 0.8, "#7fbc41" ], [ 0.9, "#4d9221" ], [ 1, "#276419" ] ], "sequential": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ], "sequentialminus": [ [ 0, "#0d0887" ], [ 0.1111111111111111, "#46039f" ], [ 0.2222222222222222, "#7201a8" ], [ 0.3333333333333333, "#9c179e" ], [ 0.4444444444444444, "#bd3786" ], [ 0.5555555555555556, "#d8576b" ], [ 0.6666666666666666, "#ed7953" ], [ 0.7777777777777778, "#fb9f3a" ], [ 0.8888888888888888, "#fdca26" ], [ 1, "#f0f921" ] ] }, "colorway": [ "#636efa", "#EF553B", "#00cc96", "#ab63fa", "#FFA15A", "#19d3f3", "#FF6692", "#B6E880", "#FF97FF", "#FECB52" ], "font": { "color": "#2a3f5f" }, "geo": { "bgcolor": "white", "lakecolor": "white", "landcolor": "#E5ECF6", "showlakes": true, "showland": true, "subunitcolor": "white" }, "hoverlabel": { "align": "left" }, "hovermode": "closest", "mapbox": { "style": "light" }, "paper_bgcolor": "white", "plot_bgcolor": "#E5ECF6", "polar": { "angularaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "radialaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "scene": { "xaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "yaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" }, "zaxis": { "backgroundcolor": "#E5ECF6", "gridcolor": "white", "gridwidth": 2, "linecolor": "white", "showbackground": true, "ticks": "", "zerolinecolor": "white" } }, "shapedefaults": { "line": { "color": "#2a3f5f" } }, "ternary": { "aaxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "baxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" }, "bgcolor": "#E5ECF6", "caxis": { "gridcolor": "white", "linecolor": "white", "ticks": "" } }, "title": { "x": 0.05 }, "xaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 }, "yaxis": { "automargin": true, "gridcolor": "white", "linecolor": "white", "ticks": "", "title": { "standoff": 15 }, "zerolinecolor": "white", "zerolinewidth": 2 } } }, "updatemenus": [ { "buttons": [ { "args": [ null, { "frame": { "duration": 500, "redraw": false }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 500, "easing": "linear" } } ], "label": "▶", "method": "animate" }, { "args": [ [ null ], { "frame": { "duration": 0, "redraw": false }, "fromcurrent": true, "mode": "immediate", "transition": { "duration": 0, "easing": "linear" } } ], "label": "◼", "method": "animate" } ], "direction": "left", "pad": { "r": 10, "t": 70 }, "showactive": false, "type": "buttons", "x": 0.1, "xanchor": "right", "y": 0, "yanchor": "top" } ], "xaxis": { "anchor": "y", "domain": [ 0, 1 ], "title": { "text": " Statistics" } }, "yaxis": { "anchor": "x", "domain": [ 0, 1 ], "range": [ -16.300001144409002, 17.89999961853 ], "title": { "text": "Temperature - (Celsius)" } } } }, "text/html": [ "
\n", " \n", " \n", "
\n", " \n", "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "max_temperature = df_temperature_all['Temperature - (Celsius)'].max()\n", "min_temperature = df_temperature_all['Temperature - (Celsius)'].min()\n", "fig = px.line(df_temperature_all.replace(' Average','',regex=True), x=' Statistics', y='Temperature - (Celsius)', animation_frame=' Year', range_y=[min_temperature,max_temperature])\n", "fig.show()" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "[![Callysto.ca License](https://github.com/callysto/curriculum-notebooks/blob/master/callysto-notebook-banner-bottom.jpg?raw=true)](https://github.com/callysto/curriculum-notebooks/blob/master/LICENSE.md)" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "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.7.4" } }, "nbformat": 4, "nbformat_minor": 2 }