What is "pandas"

Pandas is an open source library written in Python, which provides optimized data structures designed to facilitate data manipulation. It is currently the most widely used and widespread library in information manipulation for data analysis

Its structure allows the reading of data from different sources, for example:

xlsx;

CSV;

HTML;

BASES SQL;

TXT

There are two main types of data structures in pandas:

Series

A Series is like a one-dimensional array, a list of values. Every Series has an index, the index, which labels each element of the list.

inserir a descrição da imagem aqui

Dataframe

A Dataframe is a two-dimensional data structure, like a spreadsheet. ( Data matrix)

inserir a descrição da imagem aqui

Páginas Oficial:

Pages to deepen the content: