Download the PHP package 8ctopus/stats-table without Composer
On this page you can find all versions of the php package 8ctopus/stats-table. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download 8ctopus/stats-table
More information about 8ctopus/stats-table
Files in 8ctopus/stats-table
Package stats-table
Short Description Create statistics tables
License MIT
Homepage https://github.com/8ctopus/stats-table
Informations about the package stats-table
stats-table
Create statistics tables and export them to text, JSON, CSV or Excel.
introduction
This package facilitates the creation of statistical tables from datasets. It provides features including data aggregation (sum, count, average), dynamic column calculations, data grouping and sorting. The generated tables can be exported to text, JSON, CSV, or Excel.
This package is a fork of paxal/stats-table. Migrating from the parent package shouldn't be too hard, but except a bit of work.
installation
composer require 8ctopus/stats-table
usage
The StatsTableBuilder
class helps combine data from multiple tables, build aggregations (column sum, count, average, ...), create calculated columns, and add grouping. While the second class StatsTable
allows to sort the table and remove columns.
examples
Play with the examples in demo.php
.
example 1
First example shows aggregation, dynamic column and table sorting.
example 2
Here's another example with a dynamic column which depends on the aggregation result. We add a column that calculates the percentage of each status. This is useful, for example, when your data comes from a database request, as it drastically simplifies the of the database query.
example 3
The third example demonstrates a dynamic column containing consolidated revenue and group by date.