Software Installation
- Install Jupyter Notebook
- Windows shell command: pip install notebook
- Install python datascience library
- Mac shell command: pip3 install --user datascience
- Windows shell command: python -m pip install datascience
- Launch the Jupyter Notebook
- Windows shell command: jupyter notebook
- Make a Jupyter notebook and test that the datascience
library is installed properly using the program below.
Simple Python Program
from datascience import *
Table().with_columns('Number of petals', make_array(8, 34, 5))
Learn Basics of Markdown