Homework 10

Send your homework as a single ZIP archive with your files, or send a link to your GitHub repo. Try to keep line lengths below 80 characters.

EXERCISE 10.1 (VENV)

Create a virtual environment for this course using 'venv' or 'virtualenv'. Install numpy, matplotlib, pandas. Send me a list of commands used (with outputs).

EXERCISE 10.2 (SERIES)

Create pd.Series where 'index' contains days of the current month (numpy.datetime64 instances or pandas.DatetimeIndex) and 'data' contains some numbers (temperatures at noon, currency rates, ...).

EXERCISE 10.3 (DATAFRAME)

Create pd.DataFrame for the periodic table (ten elements). Column names are 'Name', 'Symbol', 'Weight'. 'index' starts from 1 for hydrogen.