Skip to content

Instantly share code, notes, and snippets.

@legale
Created November 26, 2022 11:43
Show Gist options
  • Save legale/00af4dbc8820e7cd658aa461330d21d5 to your computer and use it in GitHub Desktop.
Save legale/00af4dbc8820e7cd658aa461330d21d5 to your computer and use it in GitHub Desktop.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Сравниваем скорость методов"
]
},
{
"cell_type": "code",
"execution_count": 16,
"metadata": {},
"outputs": [],
"source": [
"import pandas as pd\n",
"from random import randrange\n",
"super_a = [[randrange(int(1e5)), randrange(int(1e5))] for i in range(int(1e7))]\n",
"df = pd.DataFrame(super_a, columns=['some','data'])"
]
},
{
"cell_type": "code",
"execution_count": 17,
"metadata": {},
"outputs": [
{
"data": {
"text/html": [
"<div>\n",
"<style scoped>\n",
" .dataframe tbody tr th:only-of-type {\n",
" vertical-align: middle;\n",
" }\n",
"\n",
" .dataframe tbody tr th {\n",
" vertical-align: top;\n",
" }\n",
"\n",
" .dataframe thead th {\n",
" text-align: right;\n",
" }\n",
"</style>\n",
"<table border=\"1\" class=\"dataframe\">\n",
" <thead>\n",
" <tr style=\"text-align: right;\">\n",
" <th></th>\n",
" <th>some</th>\n",
" <th>data</th>\n",
" </tr>\n",
" </thead>\n",
" <tbody>\n",
" <tr>\n",
" <th>0</th>\n",
" <td>68888</td>\n",
" <td>65957</td>\n",
" </tr>\n",
" <tr>\n",
" <th>1</th>\n",
" <td>69771</td>\n",
" <td>22811</td>\n",
" </tr>\n",
" <tr>\n",
" <th>2</th>\n",
" <td>31515</td>\n",
" <td>70784</td>\n",
" </tr>\n",
" <tr>\n",
" <th>3</th>\n",
" <td>79349</td>\n",
" <td>45280</td>\n",
" </tr>\n",
" </tbody>\n",
"</table>\n",
"</div>"
],
"text/plain": [
" some data\n",
"0 68888 65957\n",
"1 69771 22811\n",
"2 31515 70784\n",
"3 79349 45280"
]
},
"execution_count": 17,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"# получилось\n",
"df.head(4)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## бигдата"
]
},
{
"cell_type": "code",
"execution_count": 19,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(10000000, 2)"
]
},
"execution_count": 19,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"\n",
"df.shape"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Тут сравниваемые способы\n"
]
},
{
"cell_type": "code",
"execution_count": 76,
"metadata": {},
"outputs": [],
"source": [
"\n",
"#будем брать четные числа и умножать на 100\n",
"def m1(df):\n",
" f = df['some'] % 2 == 0\n",
" df.loc[f,'some'] = df.loc[f,'some'] * 100 \n",
" return df\n",
"\n",
"def m2(df):\n",
" df['some'].apply(lambda x : x * 100 if x % 2 == 0 else x)\n",
" return df\n",
"\n",
"def m3(df):\n",
" df['some'].where(df['some'] % 2 == 0, df['some'] * 100, inplace=True)\n",
" return df\n",
"\n",
"\n",
"\n"
]
},
{
"cell_type": "code",
"execution_count": 77,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"826 ms ± 12.7 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n"
]
}
],
"source": [
"%timeit m1(df)"
]
},
{
"cell_type": "code",
"execution_count": 78,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"4.11 s ± 55.1 ms per loop (mean ± std. dev. of 7 runs, 1 loop each)\n"
]
}
],
"source": [
"%timeit m2(df)"
]
},
{
"cell_type": "code",
"execution_count": 79,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"298 ms ± 481 µs per loop (mean ± std. dev. of 7 runs, 1 loop each)\n"
]
}
],
"source": [
"%timeit m3(df)"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3.7.3 64-bit",
"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.3"
},
"orig_nbformat": 4,
"vscode": {
"interpreter": {
"hash": "916dbcbb3f70747c44a77c7bcd40155683ae19c65e1c03b4aa3499c5328201f1"
}
}
},
"nbformat": 4,
"nbformat_minor": 2
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment