@d3fc/d3fc-group

3.0.1 • Public • Published

d3fc-group

A utility for manipulating CSV / TSV data to allow rendering of grouped series.

Main D3FC package

Installation

npm install @d3fc/d3fc-group

API Reference

General API

The d3-dsv package provides a number of utilities for parsing delimiter-separated values, such as comma-separated (CSV) or tab-separated (TSV). Given a DSV input these parsers produce an array of objects, with properties that correspond to the columns.

For example, using a subset of the data from this D3 example, a simple CSV is parsed as follows:

const data = d3.csvParse(
    `State,Under 5 Years,5 to 13 Years
    AL,310,552
    AK,52,85
    AZ,515,828`);

Resulting in the following structure:

[
   {'State': 'AL', 'Under 5 Years': '310', '5 to 13 Years': '552' },
   {'State': 'AK', 'Under 5 Years': '52', '5 to 13 Years': '85' },
   {'State': 'AZ', 'Under 5 Years': '515', '5 to 13 Years': '828' }
];

The group component takes this structure and manipulates it into a form that is more appropriate for rendering each row as an individual series within a grouped chart.

Here is how the group component can be applied to the above output:

const group = fc.group()
  .key('State');
const grouped = group(data);

The default group orientation is 'vertical', which creates a 'series' for each of the columns, other than the one which represents the key. With this example, a vertical group is as follows:

[
  [["AL", 310], ["AK", 52], ["AZ", 515]],
  [["AL", 552], ["AK", 85], ["AZ", 828]]
]

This structure very similar to the output of d3.stack and is suitable for rendering grouped series, in this case grouping by state.

The key for each series is available as series.key and the input data element for each point is available as point.data.

const group = fc.group()
  .key('State');
const grouped = group(data);
// [
//   [["AL", 310], ["AK", 52], ["AZ", 515]],
//   [["AL", 552], ["AK", 85], ["AZ", 828]]
// ]

// each series has a key property
grouped[0].key // 'Under 5 Years'
grouped[1].key // '5 to 13 Years'

// and each data element has a data property:
grouped[0][0].data //  {'State': 'AL', 'Under 5 Years': '310', '5 to 13 Years': '552' }

You can also perform a horizontal grouping, as illustrated in the following example:

const group = fc.group()
  .orient('horizontal')
  .key('State');
const grouped = group(data);

Which creates a series for each row, in this case allowing grouping by age-band:

[
  [["Under 5 Years", 310], ["5 to 13 Years", 552]],
  [["Under 5 Years", 52 ], ["5 to 13 Years", 85 ]],
  [["Under 5 Years", 515], ["5 to 13 Years", 828]]
]

API

# fc.group()

Constructs a new group generator with the default settings.

# group.key(keyValue)

If keyValue is specified, sets the name of the column within the DSV data that represents the key. If keyValue is not specified, returns the current key.

# group.value(valueFunc)

If valueFunc is specified, sets the accessor function used to obtain the value for a specific row / column. If valueFunc is not specified, returns the current accessor.

The accessor is invoked each time the group component obtains the value for a cell. The valueFunc(row, column) function is invoked with the current row (as supplied by the DSV parser) and the name of the column. The default implementation of this accessor function coerces all cell values to be Number instances.

# group.orient(orientation)

If orientation is specified, sets the orientation of the group operation. If orientation is not specified, returns the current orientation.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 3.0.1
    3,102
    • latest

Version History

Package Sidebar

Install

npm i @d3fc/d3fc-group

Weekly Downloads

3,264

Version

3.0.1

License

MIT

Unpacked Size

18.3 kB

Total Files

10

Last publish

Collaborators

  • chrisprice
  • colineberhardt
  • tlsim