transpose

v0.9.6arrow_drop_down
v0.9.6
STATUS
Passing
DOWNLOADS
2
VISIBILITY
Public
PUBLISHED
5 years ago
SIZE
746 B
Transposes the rows and columns of a 2D list.
1 contributor
Install transpose as a package?
Copied
npm i @bit/justin-capalbo.ramda.transpose
Set Bit as a scoped registryLearn more
npm config set '@bit:registry' https://node.bit.cloud
Component Example
React
React
Vue
Angular
React Native
Add dependency... help_outline
Just
import
any of the 1 million components
and packages in Bit or NPM to the example.
import Button from '@bit/grommet.grommet.button';
import Lodash from 'lodash';
toggle layout
No preview available
modifieddraft
chevron_left
chevron_right
transpose (
list:Array
) : Array

Transposes the rows and columns of a 2D list. When passed a list of n lists of length x, returns a list of x lists of length n.

Example
R.transpose([[1, 'a'], [2, 'b'], [3, 'c']]) //=> [[1, 2, 3], ['a', 'b', 'c']]
     R.transpose([[1, 2, 3], ['a', 'b', 'c']]) //=> [[1, 'a'], [2, 'b'], [3, 'c']]

     // If some of the rows are shorter than the following rows, their elements are skipped:
     R.transpose([[10, 11], [20], [], [30, 31, 32]]) //=> [[10, 20, 30], [11, 31], [32]]
Argument
list: Array

A 2D list

Returns
Array

A 2D list

Help and resources