{ "cells": [ { "cell_type": "markdown", "metadata": { "collapsed": false }, "source": [ "Execute the cell below to import the Pandas and NumPy modules using their familiar aliases." ] }, { "cell_type": "code", "execution_count": 17, "metadata": { "collapsed": false, "tags": [ "nograde" ] }, "outputs": [], "source": [ "import numpy as np\n", "import pandas as pd" ] }, { "cell_type": "markdown", "metadata": { "collapsed": false, "tags": [ "question" ] }, "source": [ "Write a statement in the cell below that creates and displays a `DataFrame` named `stats` with the structure shown below.\n", "\n", "
\n", " | points | \n", "assists | \n", "
---|---|---|
Player | \n", "\n", " | \n", " |
Schoonveld | \n", "5 | \n", "2 | \n", "
Voskuil | \n", "11 | \n", "3 | \n", "
Muller | \n", "18 | \n", "5 | \n", "