Skip to content

Instantly share code, notes, and snippets.

@brandon-b-miller
Last active May 20, 2022 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brandon-b-miller/55bab7e1d2bb7c970ae368aa7991590c to your computer and use it in GitHub Desktop.
Save brandon-b-miller/55bab7e1d2bb7c970ae368aa7991590c to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"id": "ec1a0927",
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"0 32.0\n",
"1 122.0\n",
"2 212.0\n",
"dtype: float64\n"
]
}
],
"source": [
"import pandas as pd\n",
"\n",
"celsius = pd.Series([0, 50, 100])\n",
"\n",
"def ctof(temp):\n",
" return (1.8 * temp) + 32\n",
"\n",
"farenheit = celsius.apply(ctof)\n",
"print(farenheit)"
]
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3 (ipykernel)",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.8.13"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment