d3.tsvParse()

d3.tsvParse(string[, row]) Equivalent to dsvFormat("\t").parse.

d3.tsvFormatRows()

d3.tsvFormatRows(rows) Equivalent to dsvFormat("\t").formatRows.

d3.utcFormat()

d3.utcFormat(specifier) An alias for locale.utcFormat on the default locale.

d3.tsvFormat()

d3.tsvFormat(rows[, columns]) Equivalent to dsvFormat("\t").format.

d3.treemapSliceDice()

d3.treemapSliceDice(node, x0, y0, x1, y1) If the specified node has odd depth, delegates to treemapSlice; otherwise delegates to treemapDice.

d3.treemapSquarify()

d3.treemapSquarify(node, x0, y0, x1, y1) Implements the squarified treemap algorithm by Bruls et al., which seeks to produce rectangles of a given aspect ratio.

d3.treemapSlice()

d3.treemapSlice(node, x0, y0, x1, y1) Divides the rectangular area specified by x0, y0, x1, y1 vertically according the value of each of the specified node’s children. The children are positioned in order, starting with the top edge (y0) of the given rectangle. If the sum of the children’s values is less than the specified node’s value (i.e., if the specified node has a non-zero internal value), the remaining empty space will be positioned on the bottom edge (y1) of the given rectangle.

d3.tsv()

d3.tsv(url[[, row], callback]) Creates a request for the TSV file at the specified url with the default mime type text/tab-separated-values. An optional row conversion function may be specified to map and filter row objects to a more-specific representation; see dsv.parse for details. For example: function row(d) { return { year: new Date(+d.Year, 0, 1), // convert "Year" column to Date make: d.Make, model: d.Model, length: +d.Length // convert "Length" column to number };

d3.treemapDice()

d3.treemapDice(node, x0, y0, x1, y1) Divides the rectangular area specified by x0, y0, x1, y1 horizontally according the value of each of the specified node’s children. The children are positioned in order, starting with the left edge (x0) of the given rectangle. If the sum of the children’s values is less than the specified node’s value (i.e., if the specified node has a non-zero internal value), the remaining empty space will be positioned on the right edge (x1) of the given rectangle.

d3.tree()

d3.tree() Creates a new tree layout with default settings.