enso/distribution/lib/Standard/Table/0.0.0-dev/package.yaml
James Dunkerley a0c6fa9c96
Removing old functions and tidy up of Table types (#3519)
- Removed `select` method.
- Removed `group` method.
- Removed `Aggregate_Table` type.
- Removed `Order_Rule` type.
- Removed `sort` method from Table.
- Expanded comments on `order_by`.
- Update comment on `aggregate` on Database.
- Update Visualisation to use new APIs.
- Updated Data Science examples to use new APIs.
- Moved Examples test out of Tests to own test.

# Important Notes
Need to get Examples_Tests added to CI.
2022-06-14 13:37:20 +00:00

42 lines
1.4 KiB
YAML

name: Table
namespace: Standard
version: 0.0.0-dev
license: APLv2
authors:
- name: Enso Team
email: contact@enso.org
maintainers:
- name: Enso Team
email: contact@enso.org
component-groups:
extends:
- Standard.Base.Input:
exports:
- Standard.Table.Data.Table.new
- Standard.Table.Data.Table.from_rows
- Standard.Table.Data.Column.from_vector
- Standard.Base.System.File.read
- Standard.Table.Io.Spreadsheet.from_xlsx
- Standard.Table.Io.Spreadsheet.from_xls
- Standard.Base.Select:
exports:
- Standard.Table.Data.Table.Table.at
- Standard.Table.Data.Table.Table.select_columns
- Standard.Table.Data.Table.Table.rename_columns
- Standard.Table.Data.Table.Table.remove_columns
- Standard.Table.Data.Table.Table.reorder_columns
- Standard.Table.Data.Table.Table.sort_columns
- Standard.Base.Join:
exports:
- Standard.Table.Data.Table.Table.join
- Standard.Table.Data.Table.Table.aggregate
- Standard.Base.Transform:
exports:
- Standard.Table.Data.Table.Table.order_by
- Standard.Table.Data.Table.Table.to_csv
- Standard.Table.Data.Column.Column.to_table
- Standard.Base.Output:
exports:
- Standard.Table.Data.Table.Table.write_csv
- Standard.Table.Data.Table.Table.write_xlsx