{ "cells": [ { "cell_type": "code", "execution_count": 1, "id": "efb481c2-3b37-44c2-885a-cdba7766e932", "metadata": {}, "outputs": [], "source": [ "import pandas as pd\n", "import numpy as np\n", "\n", "\n", "df = pd.read_csv(\"data/moves.csv\")" ] }, { "cell_type": "code", "execution_count": 2, "id": "04ba24c5-1f22-4e4c-8f92-82267234f9b1", "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", " \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", "
Unnamed: 0NameTypeCat.PPAtt.Acc.Effect
00AccelerockNaNNaN2040100The user smashes into the target at high speed...
12AcrobaticsNaNNaN1555100The user nimbly strikes the target. If the use...
23Aerial AceNaNNaN2060101The user confounds the target with speed, then...
35Anchor ShotNaNNaN2080100The user entangles the target with its anchor ...
46Aqua JetNaNNaN2040100The user lunges at the target at a speed that ...
...........................
738255WithdrawNaNNaN400101The user withdraws its body into its hard shel...
739256Wonder RoomNaNNaN100101The user creates a bizarre area in which Pokém...
740257Work UpNaNNaN300101The user is roused, and its Attack and Sp. Atk...
741258Worry SeedNaNNaN100100A seed that causes worry is planted on the tar...
742259YawnNaNNaN100101The user lets loose a huge yawn that lulls the...
\n", "

743 rows × 8 columns

\n", "
" ], "text/plain": [ " Unnamed: 0 Name Type Cat. PP Att. Acc. \\\n", "0 0 Accelerock NaN NaN 20 40 100 \n", "1 2 Acrobatics NaN NaN 15 55 100 \n", "2 3 Aerial Ace NaN NaN 20 60 101 \n", "3 5 Anchor Shot NaN NaN 20 80 100 \n", "4 6 Aqua Jet NaN NaN 20 40 100 \n", ".. ... ... ... ... .. ... ... \n", "738 255 Withdraw NaN NaN 40 0 101 \n", "739 256 Wonder Room NaN NaN 10 0 101 \n", "740 257 Work Up NaN NaN 30 0 101 \n", "741 258 Worry Seed NaN NaN 10 0 100 \n", "742 259 Yawn NaN NaN 10 0 101 \n", "\n", " Effect \n", "0 The user smashes into the target at high speed... \n", "1 The user nimbly strikes the target. If the use... \n", "2 The user confounds the target with speed, then... \n", "3 The user entangles the target with its anchor ... \n", "4 The user lunges at the target at a speed that ... \n", ".. ... \n", "738 The user withdraws its body into its hard shel... \n", "739 The user creates a bizarre area in which Pokém... \n", "740 The user is roused, and its Attack and Sp. Atk... \n", "741 A seed that causes worry is planted on the tar... \n", "742 The user lets loose a huge yawn that lulls the... \n", "\n", "[743 rows x 8 columns]" ] }, "execution_count": 2, "metadata": {}, "output_type": "execute_result" } ], "source": [ "df" ] }, { "cell_type": "code", "execution_count": null, "id": "e23c088f-4196-4980-af58-e4eaa80fbd5a", "metadata": {}, "outputs": [], "source": [] } ], "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.7.13" } }, "nbformat": 4, "nbformat_minor": 5 }