In the last installment the flexible and easy to use open source data analysis and manipulation tool Pandas, built on top of the Python programming language, was used with the MySQL Shell, aka mysqlsh. Pandas is a very popular open source project that features data structures and tools to manipulate numerical tables. And the name is derived from Panel Data and not the bamboo chewing critters.
Tasks like generating a series is simple:
dstokes@localhost pandas]$ python
Python 3.9.6 (default, Jul 16 2021, 00:00:00)
[GCC 11.1.1 20210531 (Red Hat 11.1.1-3)] on linux
Type "help", "copyright", "credits" or "license" for more
information.
>>> import pandas as pd
>>> import numpy as …