-
-
Notifications
You must be signed in to change notification settings - Fork 57
Plotting with DataFrame
Table of contents:
- What's a
Matrix - What's a
DataFrame - (Example) Use a
DataFrameto plot aPieChart - (Example) Use a
DataFrameto plot aRadarChart
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
...
...
...
...