Skip to content

Plotting with DataFrame

Nicolò Santilio edited this page Nov 24, 2020 · 8 revisions

Plotting with DataFrame

Table of contents:

  1. What's a Matrix
  2. What's a DataFrame
  3. (Example) Use a DataFrame to plot a PieChart
  4. (Example) Use a DataFrame to plot a RadarChart

1. What's a Matrix

A Matrix (pl. Matrices) is a mathematical entity identified by a rectangular array, arranged in rows and columns.
Matrices are used in different contexts, from geometric and arithmetic operations, to machine learning and clustering.
In our case, we will use matrices to store complex nested Arrays of Arrays.
In gdscript, a Matrix class is nothing else other than an big single Array which contains multiple Arrays: while internal Arrays will be handled as rows, each element of each array will be a column element for its Array. !! add image, from real Matrix to gdscript Matrix Of course, the Matrix class will offer more built-in functionalities to properly work with these objects and to use them in every environment possible.

  • Matrix Class
  • MatrixGenerator Class
  • How to use Matrix and MatrixGenerator

Matrix Class

...

MatrixGenerator Class

...

How to use Matrix and MatrixGenerator

...

2. What's a DataFrame

...

Clone this wiki locally